Skip to content

Commit

Permalink
Merge pull request #5161 from mesolaries/patch-1
Browse files Browse the repository at this point in the history
[PDO Postgresql] Remove trailing comma in a PDO object parameters
  • Loading branch information
derrabus committed Jan 5, 2022
2 parents 8e1b0cc + 5564d38 commit 4caf37a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/PDO/PgSQL/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function connect(array $params)
$this->constructPdoDsn($params),
$params['user'] ?? '',
$params['password'] ?? '',
$driverOptions,
$driverOptions
);
} catch (PDOException $exception) {
throw Exception::new($exception);
Expand Down

0 comments on commit 4caf37a

Please sign in to comment.