Passed
Push — master ( fe21a0...2b304b )
by Sven
04:54 queued 02:43
created
src/ArrayUtils.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
     {
88 88
         $return = [];
89 89
         $awr_func = $preserve_keys ?
90
-            function ($v, $k) use (&$return) {$return[$k] = $v;} :
91
-            function ($v) use (&$return) {$return[] = $v;}
90
+            function($v, $k) use (&$return) {$return[$k] = $v; } :
91
+            function($v) use (&$return) {$return[] = $v; }
92 92
         ;
93 93
         array_walk_recursive($input, $awr_func);
94 94
         return $return;
Please login to merge, or discard this patch.