| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class CommandBeforeInitializeEvent extends Event |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var InputInterface |
||
| 13 | */ |
||
| 14 | private $input; |
||
| 15 | |||
| 16 | public function __construct(InputInterface $input) |
||
| 17 | { |
||
| 18 | $this->input = $input; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function input(): InputInterface |
||
| 24 | } |
||
| 25 | |||
| 26 | } |