Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CreateConfigCommand extends Command |
||
14 | { |
||
15 | public function configure() |
||
16 | { |
||
17 | $this |
||
18 | ->setName('create-config') |
||
19 | ->setDescription('This command creates sr_config.yaml file in working directory'); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param InputInterface $input |
||
24 | * @param OutputInterface $output |
||
25 | * @return void |
||
26 | */ |
||
27 | public function execute(InputInterface $input, OutputInterface $output) |
||
33 | } |
||
34 | } |
||
35 |