From 8f6db28661f6e763c0cc95f141bad8f3a5553c62 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Dec 2014 22:01:17 -0600 Subject: [PATCH] Add connection settings to cache config. --- config/cache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 9ee42f46..94f8801f 100644 --- a/config/cache.php +++ b/config/cache.php @@ -39,6 +39,7 @@ return [ 'database' => [ 'driver' => 'database', 'table' => 'cache', + 'connection' => null, ], 'file' => [ @@ -54,7 +55,8 @@ return [ ], 'redis' => [ - 'driver' => 'redis' + 'driver' => 'redis', + 'connection' => 'default', ], ],