From 6e0889b67c9d0435c4f50d204df406cc4121fc97 Mon Sep 17 00:00:00 2001 From: velz Date: Wed, 10 Dec 2025 16:47:58 +0530 Subject: [PATCH] FIX_MINOR --- app/Config/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Database.php b/app/Config/Database.php index 6f39178..d1632d6 100755 --- a/app/Config/Database.php +++ b/app/Config/Database.php @@ -98,7 +98,7 @@ class Database extends Config $this->defaultGroup = 'tests'; } - $this->enableSSL = env('DB_SSL_ENABLE'); + $this->enableSSL = env('DB_SSL_ENABLE') ?? false; if ($this->enableSSL === true || $this->enableSSL === 'true' || $this->enableSSL === 1 || $this->enableSSL === '1') {