| 1 | <?php |
||
| 14 | class ClearWebCacheCommand extends AbstractCommand |
||
| 15 | { |
||
| 16 | const COMMAND_NAME = 'cache:clear-web-cache'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return void |
||
| 20 | * @throws \Symfony\Component\Console\Exception\InvalidArgumentException |
||
| 21 | */ |
||
| 22 | protected function configure() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 33 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 34 | * |
||
| 35 | * @return int|null |
||
| 36 | */ |
||
| 37 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 46 | } |
||
| 47 |