From 51c4166bfbf0556e808f8f583fb7d91ce0fe6efe Mon Sep 17 00:00:00 2001 From: Sergey Pashkevich Date: Fri, 15 Mar 2024 13:18:22 +0300 Subject: [PATCH] [11.x] Removed useless null parameter for env helper (cache.php) (#6374) --- config/cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cache.php b/config/cache.php index 3eb95d10..38680919 100644 --- a/config/cache.php +++ b/config/cache.php @@ -41,8 +41,8 @@ 'database' => [ 'driver' => 'database', 'table' => env('DB_CACHE_TABLE', 'cache'), - 'connection' => env('DB_CACHE_CONNECTION', null), - 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION', null), + 'connection' => env('DB_CACHE_CONNECTION'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), ], 'file' => [