| Conditions | 2 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | protected function createDocs(InputInterface $input, OutputInterface $output): void { |
||
| 27 | $inputPath = $input->getArgument('inputPath'); |
||
| 28 | $outputPath = $input->getArgument('outputPath'); |
||
| 29 | try { |
||
| 30 | $filesTreatment = new FilesTreatment($inputPath); |
||
| 31 | $filesTreatment->createDocs($output, $outputPath); |
||
| 32 | } catch (\Exception $e) { |
||
| 33 | $output->writeln('Documentation could not be created.'); |
||
| 34 | } |
||
| 36 | } |