Skip to content

Commit

Permalink
Update PdoPgSqlQueryReflector.php
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Nov 17, 2024
1 parent 3160612 commit a91e587
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/QueryReflection/PdoPgSqlQueryReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ protected function checkInformationSchema(string $tableName): Iterator

foreach ($result as $row) {
$default = $row['COLUMN_DEFAULT'] ?? '';
/** @var string|null $columnName */
$columnName = $row['COLUMN_NAME'];

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (reflection replay) (8.1, mysqli, replay)

PHPDoc tag @var with type string|null is not subtype of type string.

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (reflection replay) (8.1, pdo-mysql, replay)

PHPDoc tag @var with type string|null is not subtype of type string.

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.0, mariadb:latest, mysqli, recording)

PHPDoc tag @var with type string|null is not subtype of type string.

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, mariadb:latest, mysqli, recording)

PHPDoc tag @var with type string|null is not subtype of type string.

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.2, mariadb:latest, mysqli, recording)

PHPDoc tag @var with type string|null is not subtype of type string.

Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php

View workflow job for this annotation

GitHub Actions / PHPStan (8.1, mysql:8.0, mysqli, replay-and-recording, --health-cmd="mysqladmin ping" --health-in...

PHPDoc tag @var with type string|null is not subtype of type string.
$isNullable = 'YES' === $row['IS_NULLABLE'];

Expand Down

0 comments on commit a91e587

Please sign in to comment.