Skip to content

Commit ab27cf5

Browse files
authored
Merge pull request #416 from Geolim4/final
Fixed #414
2 parents 08dc6b0 + c278aef commit ab27cf5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/phpFastCache/Drivers/Predis/Driver.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ protected function driverConnect()
128128

129129
$this->instance = new PredisClient(array_merge([
130130
'host' => '127.0.0.1',
131-
'port' => '6379',
132-
'password' => '',
133-
'database' => '',
131+
'port' => 6379,
132+
'password' => null,
133+
'database' => null,
134134
], $config));
135135

136136
return true;

0 commit comments

Comments
 (0)