Skip to content

Commit 9e97527

Browse files
committed
Update PdoPgSqlQueryReflector.php
1 parent 087f413 commit 9e97527

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/QueryReflection/PdoPgSqlQueryReflector.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ protected function checkInformationSchema(string $tableName): Iterator
120120
$result = $this->stmt->fetchAll(PDO::FETCH_ASSOC);
121121

122122
// pgsql and mysql have a similar named but different information schema, with different cased key-words
123-
// @phpstan-ignore-next-line
124-
/** @var array{column_default?: string, column_name: string, is_nullable: string} $row */
123+
/** @var array{column_default?: string, column_name: string, is_nullable: string} $row */ // @phpstan-ignore varTag.type
125124
foreach ($result as $row) {
126125
$default = $row['column_default'] ?? '';
127126
$columnName = $row['column_name'];

0 commit comments

Comments
 (0)