Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #166 from PhillipMwaniki/bug/default-connection
Browse files Browse the repository at this point in the history
Make MySQL the default connection type incase the project's connection type is different.
  • Loading branch information
QuintenJustus committed Mar 13, 2024
2 parents b5f5db9 + ea89d6b commit 9b37d8c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Connection/DatabaseConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public function getConnection($database = null)
$className = "PostgresConnection";
break;
default:
$className = "MySqlConnection";
break;
}

Expand Down

0 comments on commit 9b37d8c

Please sign in to comment.