remove a bunch of dead variables and things

This commit is contained in:
Shish
2019-10-02 11:23:57 +01:00
parent e08cdb1638
commit 30698fefdc
45 changed files with 51 additions and 111 deletions

View File

@@ -127,7 +127,7 @@ class RedisCache implements CacheEngine
public function delete(string $key)
{
$this->redis->delete($key);
$this->redis->del($key);
}
}