Passed
Push — master ( db43e8...42566f )
by Paweł
02:54
created
src/Player/PlayerAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function askForDecision(string $question, DecisionCollection $decisions): Decision;
13 13
 
14
-    public function askForInformation(string $question): int|string;
14
+    public function askForInformation(string $question): int | string;
15 15
 
16 16
     public function askForConfirmation(string $question): bool;
17 17
 }
Please login to merge, or discard this patch.
src/Infrastructure/Cli/PlayerInput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         return $this->io->choice($question, $decisions->getItems());
21 21
     }
22 22
 
23
-    public function askForInformation(string $question): int|string
23
+    public function askForInformation(string $question): int | string
24 24
     {
25 25
         return $this->io->ask($question);
26 26
     }
Please login to merge, or discard this patch.