| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | protected function configure() |
||
| 16 | { |
||
| 17 | $this |
||
| 18 | ->setName('clean') |
||
| 19 | ->setDescription('Remove the output directory') |
||
| 20 | ->setDefinition( |
||
| 21 | new InputDefinition([ |
||
| 22 | new InputArgument('path', InputArgument::OPTIONAL, 'If specified, use the given path as working directory'), |
||
| 23 | ]) |
||
| 24 | ) |
||
| 25 | ->setHelp('Remove the output directory and temporary files.'); |
||
| 26 | } |
||
| 27 | |||
| 51 |