-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / PHPStan (reflection replay) (8.1, mysqli, replay)
Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php GitHub Actions / PHPStan (reflection replay) (8.1, pdo-mysql, replay)
Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php GitHub Actions / PHPStan (8.0, mariadb:latest, mysqli, recording)
Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php GitHub Actions / PHPStan (8.1, mariadb:latest, mysqli, recording)
Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php GitHub Actions / PHPStan (8.2, mariadb:latest, mysqli, recording)
Check failure on line 125 in src/QueryReflection/PdoPgSqlQueryReflector.php GitHub Actions / PHPStan (8.1, mysql:8.0, mysqli, replay-and-recording, --health-cmd="mysqladmin ping" --health-in...
|
||
$isNullable = 'YES' === $row['IS_NULLABLE']; | ||
|
||
|