1 | <?php |
||
9 | class FlushCommand extends AbstractModifierCommand |
||
10 | { |
||
11 | protected function configure() |
||
12 | { |
||
13 | $this |
||
14 | ->setName('cache:flush') |
||
15 | ->setDescription('Flush magento cache storage') |
||
16 | ; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
21 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
22 | * @return int|void |
||
23 | */ |
||
24 | protected function execute(InputInterface $input, OutputInterface $output) |
||
39 | } |
||
40 |