| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function configure(): void |
||
| 19 | { |
||
| 20 | $this->setName('create') |
||
| 21 | ->setDescription('Create PDF format documentation.') |
||
| 22 | ->setHelp('This command allows you to generate documentation for your PHP files.') |
||
| 23 | ->addArgument('inputPath', InputArgument::REQUIRED, 'File or directory path where the PHP code is.') |
||
| 24 | ->addArgument('outputPath', InputArgument::REQUIRED, 'Directory where the documentation will be created.'); |
||
| 25 | } |
||
| 35 | } |