RedisHandler for Cache fixes #1079

This commit is contained in:
Lonnie Ezell 2018-06-24 22:28:39 -05:00
parent d48bba189e
commit 1a86f86060
No known key found for this signature in database
GPG Key ID: 8EB408F8D82F5002

View File

@ -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
@ -77,7 +77,7 @@ class RedisHandler implements CacheInterface
if ( ! empty($config))
{
$this->config = array_merge($this->config, $config);
$this->config = array_merge($this->config, $config['redis']);
}
}