| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class cacheinvalidate extends Command |
||
| 23 | { |
||
| 24 | protected function configure() |
||
| 25 | { |
||
| 26 | $this->setName('midcom:cache-invalidate') |
||
| 27 | ->setAliases(['cache-invalidate']) |
||
| 28 | ->setDescription('Clears the cache'); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function execute(InputInterface $input, OutputInterface $output) : int |
||
| 35 | } |
||
| 36 | } |
||
| 37 |