/**
  * {@inheritdoc}
  */
 protected function configure()
 {
     $this->addArgument(self::INPUT_KEY_TYPES, InputArgument::IS_ARRAY, 'List of cache types, space separated. If omitted, all caches will be affected');
     $this->addOption(self::INPUT_KEY_ALL, null, InputOption::VALUE_NONE, 'All cache types');
     parent::configure();
 }
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     $this->addArgument(self::INPUT_KEY_TYPES, InputArgument::IS_ARRAY, 'Space-separated list of cache types or omit to apply to all cache types.');
     parent::configure();
 }
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     $this->setName('cache:status');
     $this->setDescription('Checks cache status');
     parent::configure();
 }