From 5869d73208371df7971691660c3adcbc383f0daf Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 13 Mar 2024 16:18:29 +0000 Subject: [PATCH] Prevents database redis options of being merged (#50523) --- src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php b/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php index 5de5e8f41042..02201ef86f60 100644 --- a/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php +++ b/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php @@ -119,7 +119,7 @@ protected function mergeableOptions($name) 'auth' => ['guards', 'providers', 'passwords'], 'broadcasting' => ['connections'], 'cache' => ['stores'], - 'database' => ['connections', 'redis'], + 'database' => ['connections'], 'filesystems' => ['disks'], 'logging' => ['channels'], 'mail' => ['mailers'],