diff --git a/src/DebugBar/Storage/RedisStorage.php b/src/DebugBar/Storage/RedisStorage.php index 3eae128..52c0b23 100644 --- a/src/DebugBar/Storage/RedisStorage.php +++ b/src/DebugBar/Storage/RedisStorage.php @@ -10,8 +10,6 @@ namespace DebugBar\Storage; -use Predis\Client; - /** * Stores collected data into Redis */ @@ -25,7 +23,7 @@ class RedisStorage implements StorageInterface * @param \Predis\Client $redis Redis Client * @param string $hash */ - public function __construct(Client $redis, $hash = 'phpdebugbar') + public function __construct($redis, $hash = 'phpdebugbar') { $this->redis = $redis; $this->hash = $hash;