Browse Source

default to null

Taylor Otwell 8 years ago
parent
commit
8c27cb56d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/database.php

+ 1 - 1
config/database.php

@@ -117,7 +117,7 @@ return [
 
         'default' => [
             'host'     => env('REDIS_HOST', 'localhost'),
-            'password' => env('REDIS_PASSWORD', ''),
+            'password' => env('REDIS_PASSWORD', null),
             'port'     => env('REDIS_PORT', 6379),
             'database' => 0,
         ],