You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FsConnectionFactory.php
+1-5
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,7 @@ private function parseDsn(string $dsn): array
74
74
75
75
$supportedSchemes = ['file'];
76
76
if (false == in_array($dsn->getSchemeProtocol(), $supportedSchemes, true)) {
77
-
thrownew \LogicException(sprintf(
78
-
'The given scheme protocol "%s" is not supported. It must be one of "%s"',
79
-
$dsn->getSchemeProtocol(),
80
-
implode('", "', $supportedSchemes)
81
-
));
77
+
thrownew \LogicException(sprintf('The given scheme protocol "%s" is not supported. It must be one of "%s"', $dsn->getSchemeProtocol(), implode('", "', $supportedSchemes)));
0 commit comments