Add space between elseif/else if and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 13:01:57 +01:00
committed by M. Shull
parent 100db25ed9
commit a935b091d3
26 changed files with 46 additions and 46 deletions

View File

@ -93,7 +93,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest {
function($segment_id) {
if($segment_id == 1) {
return array(new \DynamicSegmentFilter([1, 2]));
} else if($segment_id == 2) {
} else if ($segment_id == 2) {
return array(new \DynamicSegmentFilter([1, 3, 4]));
}
return array();