Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 62.5% |
Changes | 0 |
1 | <?php |
||
17 | class StatCacheClearCommand extends AbstractCommand |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 25 | protected function configure() |
|
23 | { |
||
24 | $this |
||
25 | 25 | ->setName('stat:clear') |
|
26 | 25 | ->setDescription('Clears the file status cache, including the realpath cache') |
|
27 | 25 | ->setHelp(''); |
|
28 | 25 | } |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
38 | } |
||
39 | } |
||
40 |