Configuration::getConfig('FileCache', 'path') ?: PATH_CACHE, 'enable_purge' => Configuration::getConfig('FileCache', 'enable_purge'), ]; if (!is_dir($fileCacheConfig['path'])) { throw new \Exception(sprintf('The FileCache path does not exists: %s', $fileCacheConfig['path'])); } if (!is_writable($fileCacheConfig['path'])) { throw new \Exception(sprintf('The FileCache path is not writable: %s', $fileCacheConfig['path'])); } return new FileCache($fileCacheConfig); case SQLiteCache::class: return new SQLiteCache(); case MemcachedCache::class: return new MemcachedCache(); default: if (!file_exists(PATH_LIB_CACHES . $className . '.php')) { throw new \Exception('Unable to find the cache file'); } return new $className(); } } }