Passed
Push — master ( 4e3abd...c23c95 )
by Jesse
02:09
created
src/Domain/Match/Command/EndTheTurn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
 
29
-    public static function for(
29
+    public static function for (
30 30
         MatchId $match,
31 31
         int $player,
32 32
         CorrelationId $correlationId
Please login to merge, or discard this patch.
src/Domain/Match/Match.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
     private static function players(Decks $decks, int ...$ids): array
53 53
     {
54
-        return array_map(function (int $playerId, int $i) use ($decks): Player {
54
+        return array_map(function(int $playerId, int $i) use ($decks): Player {
55 55
             return Player::from($playerId, $decks[$i]->cards());
56 56
         }, $ids, array_keys($ids));
57 57
     }
Please login to merge, or discard this patch.