@@ -11,7 +11,7 @@ |
||
| 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 | } |
@@ -20,7 +20,7 @@ |
||
| 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 | } |