Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class CacheCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * @var CacheService |
||
13 | */ |
||
14 | private $cacheService; |
||
15 | |||
16 | /** |
||
17 | * @param CacheService $cacheService |
||
18 | * |
||
19 | * @throws \Symfony\Component\Console\Exception\LogicException |
||
20 | */ |
||
21 | public function __construct(CacheService $cacheService) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @throws \Symfony\Component\Console\Exception\InvalidArgumentException |
||
29 | */ |
||
30 | protected function configure() |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param InputInterface $input |
||
37 | * @param OutputInterface $output |
||
38 | * |
||
39 | * @return null|int |
||
40 | */ |
||
41 | protected function execute(InputInterface $input, OutputInterface $output) |
||
49 |