1 | <?php |
||
15 | class PurgeAllCacheCommand extends Command |
||
16 | { |
||
17 | protected $purgeFileQuery; |
||
18 | protected $purgeAllQuery; |
||
19 | |||
20 | /** |
||
21 | * @param PurgeFileQuery $purgeFileQuery |
||
22 | * @param PurgeAllQuery $purgeAllQuery |
||
23 | */ |
||
24 | public function __construct(PurgeFileQuery $purgeFileQuery, PurgeAllQuery $purgeAllQuery) |
||
30 | |||
31 | |||
32 | /** |
||
33 | * Configure the command |
||
34 | */ |
||
35 | protected function configure() |
||
44 | |||
45 | /** |
||
46 | * @param InputInterface $input |
||
47 | * @param OutputInterface $output |
||
48 | * |
||
49 | * @return int|null|void |
||
50 | */ |
||
51 | protected function execute(InputInterface $input, OutputInterface $output) |
||
63 | |||
64 | } |
||
65 |