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 3160612 commit a91e587Copy full SHA for a91e587
src/QueryReflection/PdoPgSqlQueryReflector.php
@@ -121,6 +121,7 @@ protected function checkInformationSchema(string $tableName): Iterator
121
122
foreach ($result as $row) {
123
$default = $row['COLUMN_DEFAULT'] ?? '';
124
+ /** @var string|null $columnName */
125
$columnName = $row['COLUMN_NAME'];
126
$isNullable = 'YES' === $row['IS_NULLABLE'];
127
0 commit comments