1 | <?php declare(strict_types=1); |
||
5 | final class CommandHandler |
||
6 | { |
||
7 | /** @var Command[] */ |
||
8 | private $commands = []; |
||
9 | |||
10 | 1 | public function registerCommand(Command $command) |
|
14 | |||
15 | 1 | public function hasCommand(string $commandName): bool |
|
19 | |||
20 | 1 | public function execute(string $commandName, CommandParams $params, CommandExecutionContext $executionContext): string |
|
28 | } |
||
29 |