From ea89d6b7c3700373e876cceb9cca67149903b0d5 Mon Sep 17 00:00:00 2001 From: Phillip Mwaniki Nzuli Date: Wed, 21 Feb 2024 19:48:22 +0300 Subject: [PATCH] made mysql connection the default incase there is none --- src/Connection/DatabaseConnector.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Connection/DatabaseConnector.php b/src/Connection/DatabaseConnector.php index 7f9abd3..f73b3c5 100644 --- a/src/Connection/DatabaseConnector.php +++ b/src/Connection/DatabaseConnector.php @@ -26,6 +26,7 @@ public function getConnection($database = null) $className = "PostgresConnection"; break; default: + $className = "MySqlConnection"; break; }