| 1 | <?php |
||
| 12 | class ScenarioChooserController implements Controller |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Config |
||
| 16 | */ |
||
| 17 | private $config; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Config $config |
||
| 21 | */ |
||
| 22 | public function __construct(Config $config) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Configures command to be executable by the controller. |
||
| 29 | * |
||
| 30 | * @param SymfonyCommand $command |
||
| 31 | */ |
||
| 32 | public function configure(SymfonyCommand $command) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 46 | } |
||
| 47 |