| 1 | <?php |
||
| 11 | class InitCommand extends Command |
||
| 12 | { |
||
| 13 | |||
| 14 | protected $name = 'init'; |
||
| 15 | |||
| 16 | protected $description = 'Initializes & generates an config file'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param InputInterface $input |
||
| 20 | * @param OutputInterface $output |
||
| 21 | * @return int|null|void |
||
| 22 | * @throws \Exception |
||
| 23 | */ |
||
| 24 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 40 | } |
||
| 41 |