1 | <?php |
||
10 | class MissingHandlerException extends OutOfBoundsException implements Exception |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $commandName; |
||
16 | |||
17 | /** |
||
18 | * @param string $commandName |
||
19 | * |
||
20 | * @return static |
||
21 | */ |
||
22 | 3 | public static function forCommand($commandName) |
|
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 1 | public function getCommandName(): string |
|
37 | } |
||
38 |