From f0977aef1e612b33a4cb605e4e288263eb763752 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 30 Dec 2022 20:02:27 +0100 Subject: [PATCH] Update src/Tools/DsnParser.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Grégoire Paris --- src/Tools/DsnParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/DsnParser.php b/src/Tools/DsnParser.php index 1b8cccb6ff1..e69f2b6aee6 100644 --- a/src/Tools/DsnParser.php +++ b/src/Tools/DsnParser.php @@ -103,7 +103,7 @@ private function parseDatabaseUrlPath(array $url, array $params): array $url['path'] = $this->normalizeDatabaseUrlPath($url['path']); // If we do not have a known DBAL driver, we do not know any connection URL path semantics to evaluate - // and therefore treat the path as regular DBAL connection URL path. + // and therefore treat the path as a regular DBAL connection URL path. if (! isset($params['driver'])) { return $this->parseRegularDatabaseUrlPath($url, $params); }