From 40d1940b21e9f8ea5a075b93865ce08cffa8ea6c Mon Sep 17 00:00:00 2001 From: Aldarien Date: Fri, 13 Sep 2019 17:42:02 -0300 Subject: [PATCH] FIX space --- src/MySQLRequirements.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {