FIX space

This commit is contained in:
2019-09-13 17:42:02 -03:00
parent 2f3de1145a
commit 40d1940b21

View File

@ -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 {