Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class ClearCacheCommand extends Command |
||
19 | { |
||
20 | use DocBlockResolverAwareTrait; |
||
21 | |||
22 | protected function configure(): void |
||
23 | { |
||
24 | $this->setName('clear:cache') |
||
25 | ->setDescription('Clear all gacela cache files'); |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
42 | } |
||
43 | } |
||
44 |