| 1 | <?php |
||
| 16 | class PreCommandEvent extends Event |
||
| 17 | { |
||
| 18 | /** @var CommandInterface */ |
||
| 19 | private $command; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * |
||
| 23 | * @param CommandInterface $command |
||
| 24 | */ |
||
| 25 | public function __construct(CommandInterface $command) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * |
||
| 32 | * @return CommandInterface |
||
| 33 | */ |
||
| 34 | public function getCommand() |
||
| 38 | } |
||
| 39 |