setName('core:clear-caches'); $this->setAliases(array('cache:clear')); $this->setDescription('Cleares all caches. This command can be useful for instance after updating Piwik files manually.'); } /** * Execute command like: ./console core:clear-caches */ protected function execute(InputInterface $input, OutputInterface $output) { // Note: the logic for this command must be refactored in this helper function below. Filesystem::deleteAllCacheOnUpdate(); $this->writeSuccessMessage($output, array('Caches cleared')); } }