1 | <?php |
||
17 | class CommandsCollection |
||
18 | { |
||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $commands; |
||
23 | |||
24 | 53 | public function __construct(array $commands) |
|
28 | |||
29 | 47 | public function setNode(Node $node) |
|
35 | |||
36 | 5 | public function has($command): bool |
|
40 | |||
41 | 4 | public function get($command): CommandInterface |
|
49 | |||
50 | 3 | public function keys(): array |
|
54 | } |
||
55 |