Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | protected function configure() |
||
28 | { |
||
29 | $this |
||
30 | ->setName('cache:clear') |
||
31 | ->setDescription('Removes cache') |
||
32 | ->setDefinition( |
||
33 | new InputDefinition([ |
||
34 | new InputArgument('path', InputArgument::OPTIONAL, 'Use the given path as working directory'), |
||
35 | ]) |
||
36 | ) |
||
37 | ->setHelp('Removes all cached files'); |
||
38 | } |
||
61 |