File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ protected function initPostgresPdoConnection(): PDO
4848
4949 protected function assertPgAdvisoryLockExistsInConnection (
5050 PDO $ dbConnection ,
51- PostgresLockId $ postgresLockId
51+ PostgresLockId $ postgresLockId,
5252 ): void {
5353 $ row = $ this ->findPostgresAdvisoryLockInConnection ($ dbConnection , $ postgresLockId );
5454
@@ -62,7 +62,7 @@ protected function assertPgAdvisoryLockExistsInConnection(
6262
6363 protected function assertPgAdvisoryLockMissingInConnection (
6464 PDO $ dbConnection ,
65- PostgresLockId $ postgresLockId
65+ PostgresLockId $ postgresLockId,
6666 ): void {
6767 $ row = $ this ->findPostgresAdvisoryLockInConnection ($ dbConnection , $ postgresLockId );
6868
@@ -75,7 +75,7 @@ protected function assertPgAdvisoryLockMissingInConnection(
7575 }
7676
7777 protected function assertPgAdvisoryLocksCount (
78- int $ expectedCount
78+ int $ expectedCount,
7979 ): void {
8080 $ rows = $ this ->findAllPostgresAdvisoryLocks ();
8181 $ rowsCount = count ($ rows );
@@ -89,7 +89,7 @@ protected function assertPgAdvisoryLocksCount(
8989
9090 private function findPostgresAdvisoryLockInConnection (
9191 PDO $ dbConnection ,
92- PostgresLockId $ postgresLockId
92+ PostgresLockId $ postgresLockId,
9393 ): ?object {
9494 $ id = $ postgresLockId ->id ;
9595
You can’t perform that action at this time.
0 commit comments