Passed
Push — master ( fb8651...8ae622 )
by Radosław
02:19
created
src/Decorators/AuctionArrayMapDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $map = $this->getMap();
33 33
         $fields = [];
34
-        foreach($humanReadableArray as $key => $value) {
34
+        foreach ($humanReadableArray as $key => $value) {
35 35
             if (array_key_exists($key, $map)) {
36 36
                 $fields[$map[$key]] = $value;
37 37
             }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $flippedMap = array_flip($map);
48 48
         $humanReadableArray = [];
49 49
 
50
-        foreach($fields as $key => $value) {
50
+        foreach ($fields as $key => $value) {
51 51
             if (array_key_exists($key, $flippedMap)) {
52 52
                 $humanReadableArray[$flippedMap[$key]] = $value;
53 53
             }
Please login to merge, or discard this patch.