Total Complexity | 7 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | class ClearConfigCache extends Command |
||
12 | { |
||
13 | public const NAME = 'config:clear-cache'; |
||
14 | private $config; |
||
15 | |||
16 | public function __construct(array $config) |
||
20 | } |
||
21 | |||
22 | protected function configure(): void |
||
23 | { |
||
24 | $this->setName(self::NAME) |
||
25 | ->setDescription('Clear config cache files.'); |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
55 | )); |
||
56 | } |
||
59 |