1 | <?php |
||
23 | class PurgeUrlCommand extends AbstractPurgeCommand |
||
24 | { |
||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | public const CLI_COMMAND = 'lm-varnish:cache-refresh-url'; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | private const URL_ARGUMENT = 'url'; |
||
34 | |||
35 | /** |
||
36 | * @return void |
||
37 | */ |
||
38 | protected function configure(): void |
||
52 | |||
53 | /** |
||
54 | * @param InputInterface $input |
||
55 | * @param OutputInterface $output |
||
56 | * @return void |
||
57 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
58 | */ |
||
59 | protected function execute(InputInterface $input, OutputInterface $output): void |
||
65 | } |
||
66 |