| 1 | <?php |
||
| 8 | class ConfigurationProcessor implements CommandInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var IOInterface |
||
| 12 | */ |
||
| 13 | private $input; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * ConfigurationProcessorCommand constructor. |
||
| 17 | * |
||
| 18 | * @param IOInterface $input |
||
| 19 | */ |
||
| 20 | 2 | public function __construct(IOInterface $input) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return IOInterface |
||
| 27 | */ |
||
| 28 | 2 | public function getInput() |
|
| 32 | } |
||
| 33 |