Passed
Push — master ( 445ae6...530096 )
by jean
03:19
created
src/ImportBundle/Transformer/RemoveEmptyInArrayTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     private function removeEmptyInArray($value)
24 24
     {
25
-        return array_filter($value, function ($item) {
25
+        return array_filter($value, function($item) {
26 26
             return !empty((is_array($item)) ? $this->removeEmptyInArray($item) : $item);
27 27
         });
28 28
     }
Please login to merge, or discard this patch.