laravel / framework

The Laravel Framework.
https://laravel.com
MIT License
32.62k stars 11.03k forks source link

Add Collection/Generator generic types to public query builder methods #53567

Closed rudiedirkx closed 3 days ago

rudiedirkx commented 3 days ago

Pretty self-explanatory. Only \Generator<int, \stdClass> is dubious, because that's not a Laravel generic. Both Phpstan and Psalm support it though.

With this change, $query->get() wont return a list of mixed, but a list of stdClass, which is more accurate.