We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0151377 commit c8e9501Copy full SHA for c8e9501
src/QueryReflection/PdoPgSqlQueryReflector.php
@@ -122,7 +122,7 @@ protected function checkInformationSchema(string $tableName): Iterator
122
foreach ($result as $row) {
123
$default = $row['COLUMN_DEFAULT'] ?? '';
124
$columnName = $row['COLUMN_NAME'];
125
- if ($columnName === null) {
+ if ($columnName === null) { // @phpstan-ignore identical.alwaysFalse
126
throw new ShouldNotHappenException('Failed to get column name');
127
}
128
$isNullable = 'YES' === $row['IS_NULLABLE'];
0 commit comments