| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | protected function configure() |
||
| 13 | { |
||
| 14 | $this |
||
| 15 | ->setName('app:cache:clear') |
||
| 16 | ->setDescription('Clears application cache.') |
||
| 17 | ->setHelp(<<<EOT |
||
| 18 | The <info>%command.name%</info> clears application cache. |
||
| 19 | |||
| 20 | <info>php %command.full_name%</info> |
||
| 21 | <info>php %command.full_name% --env=prod</info> |
||
| 22 | |||
| 23 | EOT |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 52 |