1 | <?php |
||
21 | class CacheClearCommand extends AbstractManagerAwareCommand |
||
22 | { |
||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | protected function configure() |
||
27 | { |
||
28 | parent::configure(); |
||
29 | |||
30 | $this |
||
31 | ->setName('ongr:es:cache:clear') |
||
32 | ->setDescription('Clears elasticsearch client cache.'); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | protected function execute(InputInterface $input, OutputInterface $output) |
||
51 | } |
||
52 |