Skip to content

Commit

Permalink
RedisHandler for Cache fixes #1079
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Jun 25, 2018
1 parent d48bba1 commit 1a86f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Cache/Handlers/RedisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @since Version 3.0.0
* @filesource
*/
use CodeIgniter\CriticalError;
use CodeIgniter\Exceptions\CriticalError;
use CodeIgniter\Cache\CacheInterface;

class RedisHandler implements CacheInterface
Expand Down Expand Up @@ -77,7 +77,7 @@ public function __construct($config)

if ( ! empty($config))
{
$this->config = array_merge($this->config, $config);
$this->config = array_merge($this->config, $config['redis']);
}
}

Expand Down

0 comments on commit 1a86f86

Please sign in to comment.