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