Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class FlushCache extends Command |
||
13 | { |
||
14 | protected CacheItemPoolInterface $cache; |
||
15 | |||
16 | public function __construct(CacheItemPoolInterface $cache) |
||
17 | { |
||
18 | parent::__construct(); |
||
19 | $this->cache = $cache; |
||
20 | } |
||
21 | |||
22 | protected function configure(): void |
||
27 | } |
||
28 | |||
29 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
35 |