Completed
Push — master ( c24d4c...96117c )
by Sven
02:34
created
src/ArrayUtils.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             return [$d[$index_key] => $d[$column_key]];
32 32
         }
33 33
         return $d[$column_key];
34
-      }, $input);
34
+        }, $input);
35 35
         if ($index_key !== null) {
36 36
             $tmp = [];
37 37
             foreach ($arr as $ar) {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         $awr_func = $preserve_keys
114 114
         ? function ($v, $k) use (&$return) {$return[$k] = $v;}
115 115
         : function ($v) use (&$return) {$return[] = $v;}
116
-      ;
116
+        ;
117 117
         array_walk_recursive($input, $awr_func);
118 118
         return $return;
119 119
     }
Please login to merge, or discard this patch.