Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | class OpcacheResetCommand extends AbstractOpcacheCommand |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 24 | protected function configure() |
|
23 | { |
||
24 | $this |
||
25 | 24 | ->setName('opcache:reset') |
|
26 | 24 | ->setDescription('Resets the contents of the opcode cache') |
|
27 | 24 | ->setHelp(''); |
|
28 | 24 | } |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 3 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
39 | } |
||
40 | } |
||
41 |