Passed
Pull Request — master (#3)
by Alexander
02:09
created
src/Helpers/AttributesFilterHelper.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,9 @@
 block discarded – undo
22 22
     public static function apply(array $attributes, array $filters) :array
23 23
     {
24 24
         foreach ($filters as $attribute => $filter) {
25
-            if (!array_key_exists($attribute, $attributes)) continue;
25
+            if (!array_key_exists($attribute, $attributes)) {
26
+                continue;
27
+            }
26 28
 
27 29
             $attributes[$attribute] = $filter($attributes[$attribute]);
28 30
         }
Please login to merge, or discard this patch.