diff --git a/src/MySQLRequirements.php b/src/MySQLRequirements.php index 5d1ff3e..2382eaa 100644 --- a/src/MySQLRequirements.php +++ b/src/MySQLRequirements.php @@ -16,7 +16,7 @@ class MySQLRequirements implements EngineRequirementsInterface { if (isset($config->host->port)) { $dsn .= ';port=' . $config->host->port; } - $dsn .= '; dbname=' . $config->database->name; + $dsn .= ';dbname=' . $config->database->name; return $dsn; } public function hasUser(): bool {