Completed
Push — master ( ac0544...a10425 )
by Nate
11:46 queued 42s
created
src/Helpers/MapperHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public static function replaceKeys(array $array, array $keyMap): array
44 44
     {
45
-        array_walk($keyMap, function ($to, $from) use (&$array) {
45
+        array_walk($keyMap, function($to, $from) use (&$array) {
46 46
             $newKey = array_key_exists($from, $array) ? $to : false;
47 47
             if ($newKey !== false) {
48 48
                 $array[$to] = $array[$from];
Please login to merge, or discard this patch.