Skip to content

Commit e772811

Browse files
committed
Ran php-cs-fixer
1 parent 6a602f9 commit e772811

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Factory/Connection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ public function compile(array $config): SQL\Factory\Repository\Connection
9191
namespace {$this->generatedNamespace};
9292
final class PDOPool {
9393
private static array \$connections = [];
94-
public static function unique(string \$dsn, ?string \$username = null, ?string \$password = null, \$options = []): \PDO {
95-
return new \PDO(\$dsn, \$username, \$password, \$options);
94+
public static function unique(string \$dsn, ?string \$username = null, ?string \$password = null, \$options = []): \\PDO {
95+
return new \\PDO(\$dsn, \$username, \$password, \$options);
9696
}
97-
public static function shared(string \$dsn, ?string \$username = null, ?string \$password = null, \$options = []): \PDO {
97+
public static function shared(string \$dsn, ?string \$username = null, ?string \$password = null, \$options = []): \\PDO {
9898
if (isset(self::\$connections[\$dsn])) {
9999
return self::\$connections[\$dsn];
100100
}

0 commit comments

Comments
 (0)