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

Trait + @phpstan-type + static/self = Type alias contains invalid type #11591

Closed
LastDragon-ru opened this issue Aug 30, 2024 · 3 comments
Closed
Labels

Comments

@LastDragon-ru
Copy link

LastDragon-ru commented Aug 30, 2024

Bug report

Seems static/self/$this doesn't supported in @phpstan-type when it used with a Trait. It was fine in v1.11.10, but gives an error in 1.12.0

/**
 * @phpstan-type SettingsFactory callable(static): array<string,mixed>
 */
trait WithConfig {
    // ...
}

Code snippet that reproduces the problem

https://phpstan.org/r/7ea25015-38b1-4d0e-8f9a-cf45d99bceb8

Expected output

No error.

Did PHPStan help you today? Did it make you happy in any way?

Yep, it saves me a lot of time while refactoring.

@calebdw
Copy link
Contributor

calebdw commented Aug 30, 2024

Same thing is happening with any of the type checks on traits:

https://phpstan.org/r/02bf59bc-7ffd-428b-a1b3-4d3c5236c13a

This Larastan stub was passing on 1.11, but is now failing on 1.12

@ondrejmirtes
Copy link
Member

Just a casual 900 LoC commit to fix this: phpstan/phpstan-src@777a82a

I had to restructure the rules so that some type checks are checked against Trait_ node (once per trait declaration in a codebase) and some against InTraitNode (once per trait use in a codebase).

Copy link

github-actions bot commented Oct 5, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 5, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

3 participants