N98\Magento\Command\Cache\CleanCommand::configure PHP Метод

configure() защищенный Метод

protected configure ( )
    protected function configure()
    {
        $this->setName('cache:clean')->addArgument('type', InputArgument::IS_ARRAY | InputArgument::OPTIONAL, 'Cache type code like "config"')->addOption('reinit', null, InputOption::VALUE_NONE, 'Reinitialise the config cache after cleaning')->addOption('no-reinit', null, InputOption::VALUE_NONE, "Don't reinitialise the config cache after flushing")->setDescription('Clean magento cache');
        $help = <<<HELP
Cleans expired cache entries.

If you would like to clean only one cache type use like:

   \$ n98-magerun.phar cache:clean full_page

If you would like to clean multiple cache types at once use like:

   \$ n98-magerun.phar cache:clean full_page block_html

If you would like to remove all cache entries use `cache:flush`

Options:
    --reinit Reinitialise the config cache after cleaning (Default)
    --no-reinit Don't reinitialise the config cache after cleaning
HELP;
        $this->setHelp($help);
    }