-
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
Implement TypeSpecifierComparisonContext #3185
Conversation
as is, this consitutues a BC break (as can be seen in all the errors of the CI pipeline). problem is, that extension can exist which just check for phpstan-src/src/Type/Php/CountFunctionTypeSpecifyingExtension.php Lines 22 to 45 in 3233155
opened the draft so we can see how to progress. one way could be: introduce a new interface - e.g. IMO we should merge the other open PRs before diving into this one |
What's the BC break? The way I thought about it, there should be no BC break, as long as the extension currently properly checks the context. |
after this PR extensions like before this PR this extension was only invoked for true/truethy/false/falsey context, but it it now specifing types for the this happens because of phpstan-src/src/Type/Php/CountFunctionTypeSpecifyingExtension.php Lines 22 to 31 in 3233155
|
Oh I see, so returning false from I agree we need a new interface: When an extension implements this interface (that's supposed to always be combined with |
what do you think about |
In #3185 (comment) I suggested new interface |
f0dacd7
to
22ea0a9
Compare
40bb131
to
cbca9a3
Compare
cbca9a3
to
56ce473
Compare
the POC works now equally to the pre-existing impl. IMO pluggin the since we need the In the current form with just wdyt? |
a better version of this PR is implemented in #3881 |
implement a POC for idea from #3178 (comment)
goal is to allow type-specifying extensions to narrow types of comparisons even in non true/truethy/false/falsey context, but e.g. from comparison against constant values.
similar as d842380 hardcoded it for
preg_match
but this time with support for extensions.we need it for https://github.com/composer/pcre/pull/24/files#diff-8f259a63a4ab66c0f035859cea17176b75144dfb4c81db9981e04b66168edc4cR32-R50
this is an alternative implementation for #3178 and does not yet handle everything (MethodCall, StaticCall etc.).