Completed
Pull Request — master (#2)
by
unknown
02:45
created
src/Processor/FilterProcessor.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         if($operator == FilterOperation::STR_STARTS_WITH){
23 23
             $operator = FilterOperation::OPERATOR_LIKE;
24 24
             $value  = $value."%";
25
-        }else if($operator == FilterOperation::STR_ENDS_WITH){
25
+        } else if($operator == FilterOperation::STR_ENDS_WITH){
26 26
             $operator = FilterOperation::OPERATOR_LIKE;
27 27
             $value  = "%".$value;
28
-        }else if($operator == FilterOperation::STR_CONTAINS){
28
+        } else if($operator == FilterOperation::STR_CONTAINS){
29 29
             $operator = FilterOperation::OPERATOR_LIKE;
30 30
             $value  = "%".$value."%";
31 31
         }
Please login to merge, or discard this patch.