1 | <?php |
||
9 | final class CommandStatuses implements EntityInterface |
||
10 | { |
||
11 | /** @var CommandStatus[] */ |
||
12 | private $statuses = []; |
||
13 | |||
14 | /** |
||
15 | * @param CommandStatus $status |
||
16 | */ |
||
17 | public function addCommandStatus(CommandStatus $status): void |
||
21 | |||
22 | /** |
||
23 | * @return CommandStatus[] |
||
24 | */ |
||
25 | public function fullStatuses(): array |
||
29 | } |
||
30 |