1 | <?php |
||
22 | class RegenerateProductsCacheCommand extends AbstractPurgeCommand |
||
23 | { |
||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | public const CLI_COMMAND = 'lm-varnish:regenerate-products-cache'; |
||
28 | |||
29 | /** |
||
30 | * @return void |
||
31 | */ |
||
32 | protected function configure(): void |
||
43 | |||
44 | /** |
||
45 | * @param InputInterface $input |
||
46 | * @param OutputInterface $output |
||
47 | * @return void |
||
48 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
49 | */ |
||
50 | protected function execute(InputInterface $input, OutputInterface $output): void |
||
55 | } |
||
56 |