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 a9db60d commit 6fac80bCopy full SHA for 6fac80b
src/Type/Doctrine/DBAL/RowCountMethodDynamicReturnTypeExtension.php
@@ -105,9 +105,9 @@ private function getResultClass(string $driver): ?string
105
case DriverDetector::PDO_SQLSRV:
106
return 'Doctrine\DBAL\Driver\PDO\Result';
107
case DriverDetector::PGSQL:
108
- return 'Doctrine\DBAL\Driver\PgSQL\Result';
+ return 'Doctrine\DBAL\Driver\PgSQL\Result'; // @phpstan-ignore return.type
109
case DriverDetector::SQLITE3:
110
- return 'Doctrine\DBAL\Driver\SQLite3\Result';
+ return 'Doctrine\DBAL\Driver\SQLite3\Result'; // @phpstan-ignore return.type
111
case DriverDetector::SQLSRV:
112
return 'Doctrine\DBAL\Driver\SQLSrv\Result';
113
}
0 commit comments