Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
fix boolean check
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Coppola committed May 3, 2020
1 parent 76543dc commit d156ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MicroMySqlDriverServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MicroMySqlDriverServiceProvider extends ServiceProvider
{
public function boot()
{
if (!config('database.connections.mysql.microOverrideDriver')) {
if (config('database.connections.mysql.microOverrideDriver')) {
$this->app->bind('db.connector.mysql', function () {
return new MicroMySqlConnector();
});
Expand Down

0 comments on commit d156ca2

Please sign in to comment.