Remove unused method Cache::getAllKeys()

2022.09-rc
nupplaPhil 2020-01-07 00:34:26 +01:00
rodzic cfae510ef0
commit f7ca437ba6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D8365C3D36B77D90
1 zmienionych plików z 0 dodań i 13 usunięć

Wyświetl plik

@ -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
*