Passed
Push — master ( 8e6980...01e136 )
by Alex
02:05 queued 17s
created
test/phpunit/DominoGameTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -145,12 +145,12 @@
 block discarded – undo
145 145
         $players = $this->createMockPlayersArray(2);
146 146
         $playersCollection = $this->createMockPlayersCollection($players);
147 147
 
148
-         $game = new DominoGame($playersCollection, $this->logger, 6);
148
+            $game = new DominoGame($playersCollection, $this->logger, 6);
149 149
 
150
-         $this->expectException(DominoGameException::class);
151
-         $this->expectExceptionMessage('Hand sizes must be a minimum of 1');
150
+            $this->expectException(DominoGameException::class);
151
+            $this->expectExceptionMessage('Hand sizes must be a minimum of 1');
152 152
 
153
-         $game->deal($handSize);
153
+            $game->deal($handSize);
154 154
     }
155 155
 
156 156
     /**
Please login to merge, or discard this patch.