Skip to content

Commit 81e16f7

Browse files
committed
CS fixes
1 parent 3b6a790 commit 81e16f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Symfony/Component/Messenger/Transport/TransportFactory.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private function santitizeDsn(string $dsn): ?string
7878
$dsn = '';
7979

8080
if (isset($parts['scheme'])) {
81-
$dsn .= $parts['scheme'] . '://';
81+
$dsn .= $parts['scheme'].'://';
8282
}
8383

8484
if (isset($parts['user'])) {
@@ -103,6 +103,7 @@ private function santitizeDsn(string $dsn): ?string
103103
if (isset($parts['path'])) {
104104
$dsn .= $parts['path'];
105105
}
106+
106107
return $dsn;
107108
}
108109
}

0 commit comments

Comments
 (0)