Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 1, 2024
1 parent a9db60d commit 6fac80b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand Down

0 comments on commit 6fac80b

Please sign in to comment.