Remove unused method Cache::getAllKeys()

This commit is contained in:
Philipp Holzer 2020-01-07 00:34:26 +01:00
parent cfae510ef0
commit f7ca437ba6
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 0 additions and 13 deletions

View File

@ -31,19 +31,6 @@ class Cache
/** @deprecated Use CacheClass::INFINITE */
const INFINITE = CacheClass::INFINITE;
/**
* @brief Returns all the cache keys sorted alphabetically
*
* @param string $prefix Prefix of the keys (optional)
*
* @return array Empty if the driver doesn't support this feature
* @throws \Exception
*/
public static function getAllKeys($prefix = null)
{
return DI::cache()->getAllKeys($prefix);
}
/**
* @brief Fetch cached data according to the key
*