Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 55.56% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class StatRealpathSizeCommand extends AbstractCommand |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 25 | protected function configure() |
|
25 | { |
||
26 | $this |
||
27 | 25 | ->setName('stat:realpath_size') |
|
28 | 25 | ->setDescription('Display size of realpath cache') |
|
29 | 25 | ->setHelp(''); |
|
30 | 25 | } |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
41 | } |
||
42 | } |
||
43 |