- Remove deprecated Redis::delete() function

This commit is contained in:
Philipp Holzer 2019-08-13 08:54:26 +02:00
parent 31cfac1cfa
commit b28e11fee8
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class RedisCache extends Cache implements IMemoryCache
public function delete($key)
{
$cachekey = $this->getCacheKey($key);
return ($this->redis->delete($cachekey) > 0);
return ($this->redis->del($cachekey) > 0);
}
/**