-
Notifications
You must be signed in to change notification settings - Fork 504
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
Fix for handling non-stringable types in dynamic access #3885
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very very valuable, but it needs two things:
- The new errors can be reported only with bleeding edge.
- The new code has to employ RuleLevelHelper. The idea is that "always wrong" like
int
is always reported, "sometimes wrong" likeint|string
is reported on level 7+, nullable likestring|null
is reported on level 8+ and mixeds are reported on level 9+. Just use RuleLevelHelper like it's used in all the rules and it will be taken care of automatically.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please do this in two separate PRs:
- Let the rules handle Expr as
$node->name
to continue the error-reporting. So that:
$a = 'Foo';
echo Foo::{$a}
Is checked against a non-existent constant. This doesn't need bleeding edge.
- Introduce new reported errors that check
$a
inFoo::{$a}
to be a string. This needs bleeding edge and RuleLevelHelper.
Thank you.
Also within those PRs add relevant regression tests for these issues: https://github.com/phpstan/phpstan-src/actions/runs/13923245791 (some of them might disappear once we do it for bleeding edge so it's nice to have this list now) |
Ok, I'll freeze this branch and submit some PRs. |
resolve phpstan/phpstan#9475