Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class CacheClearCommand extends KernelAwareCommand |
||
13 | { |
||
14 | |||
15 | private FilesManager $filesManager; |
||
16 | |||
17 | public function __construct() |
||
18 | { |
||
19 | $this->filesManager = new FilesManager(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @inheritDoc |
||
24 | */ |
||
25 | public function execute(InputInterface $input, OutputInterface $output): int |
||
33 | } |
||
34 | } |