| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | { |
||
| 29 | $configFile = file_get_contents(__DIR__ . '/../../../config/sr_config.example.yaml'); |
||
| 30 | $currentDir = getcwd(); |
||
| 31 | file_put_contents($currentDir . '/sr_config.yaml', $configFile); |
||
| 32 | $output->writeln("File sr_config.yaml created in directory: $currentDir"); |
||
| 33 | } |
||
| 35 |