Total Complexity | 5 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 93.33% |
Changes | 0 |
1 | <?php |
||
18 | class ApcuKeyDeleteCommand extends AbstractCommand |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 24 | protected function configure() |
|
24 | { |
||
25 | $this |
||
26 | 24 | ->setName('apcu:key:delete') |
|
27 | 24 | ->setDescription('Deletes an APCu key') |
|
28 | 24 | ->addArgument('key', InputArgument::REQUIRED) |
|
29 | 24 | ->setHelp(''); |
|
30 | 24 | } |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
51 | } |
||
52 | } |
||
53 |