Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Komarev committed Aug 26, 2023
1 parent db64453 commit 45a0f4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Integration/AbstractIntegrationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected function initPostgresPdoConnection(): PDO

protected function assertPgAdvisoryLockExistsInConnection(
PDO $dbConnection,
PostgresLockId $postgresLockId
PostgresLockId $postgresLockId,
): void {
$row = $this->findPostgresAdvisoryLockInConnection($dbConnection, $postgresLockId);

Expand All @@ -62,7 +62,7 @@ protected function assertPgAdvisoryLockExistsInConnection(

protected function assertPgAdvisoryLockMissingInConnection(
PDO $dbConnection,
PostgresLockId $postgresLockId
PostgresLockId $postgresLockId,
): void {
$row = $this->findPostgresAdvisoryLockInConnection($dbConnection, $postgresLockId);

Expand All @@ -75,7 +75,7 @@ protected function assertPgAdvisoryLockMissingInConnection(
}

protected function assertPgAdvisoryLocksCount(
int $expectedCount
int $expectedCount,
): void {
$rows = $this->findAllPostgresAdvisoryLocks();
$rowsCount = count($rows);
Expand All @@ -89,7 +89,7 @@ protected function assertPgAdvisoryLocksCount(

private function findPostgresAdvisoryLockInConnection(
PDO $dbConnection,
PostgresLockId $postgresLockId
PostgresLockId $postgresLockId,
): ?object {
$id = $postgresLockId->id;

Expand Down

0 comments on commit 45a0f4a

Please sign in to comment.