| 1 | <?php | ||
| 18 | class CreateWebCacheCommand extends AbstractCommand | ||
| 19 | { | ||
| 20 | const COMMAND_NAME = 'cache:web:create'; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * Configures the command. | ||
| 24 | * | ||
| 25 | * @return void | ||
| 26 | * | ||
| 27 | * @throws InvalidArgumentException | ||
| 28 | */ | ||
| 29 | protected function configure() | ||
| 37 | |||
| 38 | /** | ||
| 39 | * Executes the command. | ||
| 40 | * | ||
| 41 | * @param InputInterface $input | ||
| 42 | * @param OutputInterface $output | ||
| 43 | * | ||
| 44 | * @return int|null | ||
| 45 | */ | ||
| 46 | protected function execute(InputInterface $input, OutputInterface $output) | ||
| 65 | } | ||
| 66 |