setName('core:clear-caches'); $this->setAliases(array('cache:clear')); $this->setDescription('Clears all caches. This command can be useful for instance after updating Matomo files manually.'); } /** * Execute command like: ./console core:clear-caches */ protected function doExecute(): int { // Note: the logic for this command must be refactored in this helper function below. Filesystem::deleteAllCacheOnUpdate(); $this->writeSuccessMessage('Caches cleared'); return self::SUCCESS; } }