Skip to content

Commit 26f3864

Browse files
committed
Merge pull request #1 from chaegumi/master
Master
2 parents 4dbe9d1 + 64dd719 commit 26f3864

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

phpfastcache/3.0.0/drivers/predis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function __construct($config = array()) {
3535

3636
function connectServer() {
3737

38-
$server = isset($this->option['redis']) ? $this->option['redis'] : array(
38+
$server = isset($this->config['redis']) ? $this->config['redis'] : array(
3939
"host" => "127.0.0.1",
4040
"port" => "6379",
4141
"password" => "",

phpfastcache/3.0.0/drivers/redis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function __construct($config = array()) {
3636

3737
function connectServer() {
3838

39-
$server = isset($this->option['redis']) ? $this->option['redis'] : array(
39+
$server = isset($this->config['redis']) ? $this->config['redis'] : array(
4040
"host" => "127.0.0.1",
4141
"port" => "6379",
4242
"password" => "",

0 commit comments

Comments
 (0)