Passed
Branch main (7d7c97)
by Darío
06:56
created
Category
src/Iterators/EmptyArrayValuesIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         $collection = array_filter(
16 16
             $collection,
17
-            function ($value) {
17
+            function($value) {
18 18
                 return empty($value);
19 19
             }
20 20
         );
Please login to merge, or discard this patch.
src/Iterators/NotEmptyArrayValuesIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         $collection = array_filter(
16 16
             $collection,
17
-            function ($value) {
17
+            function($value) {
18 18
                 return !empty($value);
19 19
             }
20 20
         );
Please login to merge, or discard this patch.