1 | <?php |
||
4 | class Choice |
||
5 | { |
||
6 | /** |
||
7 | * @var string|null |
||
8 | */ |
||
9 | private $command; |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $option; |
||
14 | |||
15 | public function __construct($command, string $option) |
||
20 | |||
21 | /** |
||
22 | * @return string|null |
||
23 | */ |
||
24 | public function getCommand() |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getOption(): string |
||
36 | } |