redis function delete is deprecated

This commit is contained in:
aynsix
2019-11-15 17:12:02 +04:00
parent 232c255e3e
commit be73baae5b
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ class RedisCache extends CacheProvider implements Cache
*/
protected function doDelete($id)
{
return $this->_redis->delete($id);
return $this->_redis->del($id);
}
/**