Completed
Push — master ( c23c95...90e58a )
by Jesse
02:01
created
src/ReadModel/Match/Battlefield.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
         $this->cards[$match->id()][$owner] = array_filter(
21 21
             $this->cards[$match->id()][$owner],
22
-            function (Card $card) use ($cardToRemove): bool {
22
+            function(Card $card) use ($cardToRemove): bool {
23 23
                 return !$card->is($cardToRemove);
24 24
             }
25 25
         );
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     {
43 43
         return array_filter(
44 44
             $this->cardsInPlay($match),
45
-            function (Card $card): bool {
45
+            function(Card $card): bool {
46 46
                 return $card->isAttacking();
47 47
             }
48 48
         );
Please login to merge, or discard this patch.