Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add failing test for bug-12585 #3828

Open
wants to merge 1 commit into
base: 2.1.x
Choose a base branch
from

Conversation

calebdw
Copy link
Contributor

@calebdw calebdw commented Feb 16, 2025

Hello!

This adds failings tests for phpstan/phpstan#12585.

Please note that there's actually two bugs here:

1. Return type

I'm getting errors of the form:

Post::query()->whereHas('user', fn ($q) => $q->where('name', 'test'));
// Anonymous function should return Bug12585\Builder<Bug12585\Model> but returns Bug12585\Builder<Bug12585\User>

despite the parent method having (\Closure(Builder<TRelatedModel>): mixed)|null as the $callback type; and the MethodParameterClosureTypeExtension specifying MixedType as the return type for the replaced closure type.

It seems like the parameter type of the closure phpdoc is being used as the return type...

2. Parameter Type

I am getting errors of the form:

User::query()->whereHas('posts', fn (PostBuilder $q) => $q->where('name', 'test'));
// Parameter #2 $callback of method Bug12585\Builder<Bug12585\User>::whereHas() expects (Closure(Bug12585\Builder<Bug12585\Post>): mixed)|null,             
//         Closure(Bug12585\PostBuilder): Bug12585\PostBuilder given.

I think that the MethodParameterClosureTypeExtension is only used to resolve the closure type inside the closure, while the PHPDoc is being used when checking method calls.

Thanks!

@makroxyz
Copy link

Please merge!

@ondrejmirtes
Copy link
Member

@makroxyz It doesn't make sense to merge failing tests, it needs to be fixed first.

@canvural
Copy link
Contributor

Looks similar to #3131

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants