Completed
Push — master ( 5383c5...22d5c7 )
by Samuel
7s
created

ApcuRegexpDeleteCommand::execute()   C

Complexity

Conditions 7
Paths 24

Size

Total Lines 36
Code Lines 25

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 56

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 36
ccs 0
cts 30
cp 0
rs 6.7272
nc 24
cc 7
eloc 25
nop 2
crap 56
1
<?php
2
3
/*
4
 * This file is part of CacheTool.
5
 *
6
 * (c) Samuel Gordalina <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace CacheTool\Command;
13
14
use Symfony\Component\Console\Helper\Table;
15
use Symfony\Component\Console\Input\InputArgument;
16
use Symfony\Component\Console\Input\InputInterface;
17
use Symfony\Component\Console\Output\OutputInterface;
18
19
class ApcuRegexpDeleteCommand extends AbstractCommand
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24 4
    protected function configure()
25
    {
26 4
        $this
27 4
            ->setName('apcu:regexp:delete')
28 4
            ->setDescription('Deletes all APCu key matching a regexp')
29 4
            ->addArgument('regexp', InputArgument::REQUIRED)
30 4
            ->setHelp('');
31 4
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    protected function execute(InputInterface $input, OutputInterface $output)
37
    {
38
        $this->ensureExtensionLoaded('apcu');
39
40
        $regexp = $input->getArgument('regexp');
41
42
        $user = $this->getCacheTool()->apcu_cache_info('user');
43
44
        $keys = array();
45
        foreach ($user['cache_list'] as $key) {
46
            $string = $key['info'];
47
            if (preg_match('|' . $regexp . '|', $string)) {
48
                $keys[] = $key;
49
            }
50
        }
51
        $cpt = 0;
52
        $table = new Table($output);
53
        $table->setHeaders(array('Key', 'TTL', ));
54
        $table->setRows($keys);
55
        $table->render($output);
0 ignored issues
show
Unused Code introduced by
The call to Table::render() has too many arguments starting with $output.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
56
        foreach ($keys as $key) {
57
            $success = $this->getCacheTool()->apcu_delete($key['info']);
58
            if ($output->isVerbose()) {
59
                if ($success) {
60
                    $output->writeln("<comment>APCu key <info>{$key['info']}</info> was deleted</comment>");
61
                } else {
62
                    $output->writeln("<comment>APCu key <info>{$key['info']}</info> could not be deleted.</comment>");
63
                }
64
            }
65
            $cpt ++;
66
        }
67
        if ($output->isVerbose()) {
68
            $output->writeln("<comment>APCu key <info>{$cpt}</info> keys treated.</comment>");
69
        }
70
        return 1;
71
    }
72
}
73