Skip to content

Commit 45a0f4a

Browse files
author
Anton Komarev
committed
Code style
1 parent db64453 commit 45a0f4a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/Integration/AbstractIntegrationTestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)