Merge branch 'master' into PHRAS-2805_Port_41_facet-case-sensibility

This commit is contained in:
Nicolas Maillat
2019-11-19 16:04:41 +01:00
committed by GitHub
5 changed files with 17 additions and 5 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);
}
/**

View File

@@ -80,7 +80,7 @@ class RedisSessionHandler implements \SessionHandlerInterface
*/
public function destroy($sessionId)
{
return 1 === $this->redis->delete($this->prefix.$sessionId);
return 1 === $this->redis->del($this->prefix.$sessionId);
}
/**