Total Complexity | 7 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 70.37% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ClearConfigCache extends Command |
||
12 | { |
||
13 | public const NAME = 'config:clear-cache'; |
||
14 | /** @var array<mixed> */ |
||
15 | private array $config; |
||
16 | |||
17 | /** |
||
18 | * @param array<mixed> $config |
||
19 | */ |
||
20 | 2 | public function __construct(array $config) |
|
24 | 2 | } |
|
25 | |||
26 | 2 | protected function configure(): void |
|
27 | { |
||
28 | 2 | $this->setName(self::NAME) |
|
29 | 2 | ->setDescription('Clear config cache files.'); |
|
30 | 2 | } |
|
31 | |||
32 | 2 | protected function execute(InputInterface $input, OutputInterface $output): ?int |
|
63 | } |
||
64 | } |
||
65 |