Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
23 | protected function execute(InputInterface $input, OutputInterface $output) |
||
24 | { |
||
25 | $cacheDir = !empty($input->getArgument('cache_dir')) ? $input->getArgument('cache_dir') : __DIR__.'/../../_cache'; |
||
26 | |||
27 | DIC::destroyCacheDir($cacheDir); |
||
|
|||
28 | |||
29 | $output->writeln('<fg=green>Cache was successfully cleared.</>'); |
||
30 | } |
||
32 |