| 1 | <?php |
||
| 8 | class GetInputEvent extends Event |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var InputInterface |
||
| 12 | */ |
||
| 13 | private $input; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * GetInputEvent constructor. |
||
| 17 | * |
||
| 18 | * @param InputInterface $input input arguments and options |
||
| 19 | */ |
||
| 20 | public function __construct(InputInterface $input) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Returns an input stream |
||
| 27 | * |
||
| 28 | * @return InputInterface |
||
| 29 | */ |
||
| 30 | public function getInput() |
||
| 34 | } |
||
| 35 |