diff --git a/src/Type/Doctrine/DBAL/RowCountMethodDynamicReturnTypeExtension.php b/src/Type/Doctrine/DBAL/RowCountMethodDynamicReturnTypeExtension.php index bb4f626b..8fe17348 100644 --- a/src/Type/Doctrine/DBAL/RowCountMethodDynamicReturnTypeExtension.php +++ b/src/Type/Doctrine/DBAL/RowCountMethodDynamicReturnTypeExtension.php @@ -105,9 +105,9 @@ private function getResultClass(string $driver): ?string case DriverDetector::PDO_SQLSRV: return 'Doctrine\DBAL\Driver\PDO\Result'; case DriverDetector::PGSQL: - return 'Doctrine\DBAL\Driver\PgSQL\Result'; + return 'Doctrine\DBAL\Driver\PgSQL\Result'; // @phpstan-ignore return.type case DriverDetector::SQLITE3: - return 'Doctrine\DBAL\Driver\SQLite3\Result'; + return 'Doctrine\DBAL\Driver\SQLite3\Result'; // @phpstan-ignore return.type case DriverDetector::SQLSRV: return 'Doctrine\DBAL\Driver\SQLSrv\Result'; }