1 | <?php |
||
11 | class GenerateCommand extends Command |
||
12 | { |
||
13 | |||
14 | const ROUTE = 'route'; |
||
15 | |||
16 | /** |
||
17 | * @var Stitcher |
||
18 | */ |
||
19 | private $stitcher; |
||
20 | |||
21 | public function __construct(string $configPath = './config.yml', array $defaultConfig = []) { |
||
26 | |||
27 | protected function configure() { |
||
33 | |||
34 | /** |
||
35 | * @param InputInterface $input |
||
36 | * @param OutputInterface $output |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
53 | |||
54 | } |
||
55 |