Passed
Push — master ( 39dd2f...8ee4e9 )
by Rafal
03:50
created
src/GameApi/Business/WorldCupSfgIo/Client/Parser.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
     {
17 17
         $resultGames = [];
18 18
         foreach ($matchInfos as $matchInfo) {
19
-           $homeTeam = $matchInfo['home_team'];
20
-           $awayTeam = $matchInfo['away_team'];
21
-           $resultGames[] = new GameResult(
22
-               $homeTeam['country'],
23
-               $awayTeam['country'],
24
-               (int)$homeTeam['goals'],
25
-               (int)$awayTeam['goals']
26
-           );
19
+            $homeTeam = $matchInfo['home_team'];
20
+            $awayTeam = $matchInfo['away_team'];
21
+            $resultGames[] = new GameResult(
22
+                $homeTeam['country'],
23
+                $awayTeam['country'],
24
+                (int)$homeTeam['goals'],
25
+                (int)$awayTeam['goals']
26
+            );
27 27
         }
28 28
         return $resultGames;
29 29
     }
Please login to merge, or discard this patch.