| 1 | <?php |
||
| 9 | class CommandHandlerDescriptor |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $handlerClass; |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $methodName; |
||
| 20 | |||
| 21 | 21 | public function __construct( |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | 12 | public function getHandlerClass(): string |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 20 | public function getMethodName(): string |
|
| 44 | } |