From 8c27cb56d0603938691107094eb70cbba2907c88 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 7 Dec 2015 12:05:42 -0600 Subject: [PATCH] default to null --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 2b41a2c2f..66e88a909 100644 --- a/config/database.php +++ b/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, ],