-
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
add callback types for array_uintersect etc #3282
base: 1.12.x
Are you sure you want to change the base?
Conversation
@@ -201,8 +201,11 @@ public static function decideType( | |||
} | |||
|
|||
if ( | |||
(!$phpDocType instanceof NeverType || ($type instanceof MixedType && !$type->isExplicitMixed())) | |||
&& $type->isSuperTypeOf(TemplateTypeHelper::resolveToBounds($phpDocType))->yes() | |||
($type->isCallable()->yes() && $phpDocType->isCallable()->yes()) |
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 was the problem encountered in the original PR (at least when rebased on the current 1.11.x branch). $type
is callable(mixed, mixed): int
and TemplateTypeHelper::resolveToBounds($phpDocType)
is callable(array-key, array-key): int
. $type->isSuperTypeOf(TemplateTypeHelper::resolveToBounds($phpDocType))
returns maybe (IMO it should return no, but I didn't look into that).
As I understand it the goal of decideType
is to allow phpdocs to narrow down the native type (or in case of the native PHP code reflection also the signature/stub/jetbrains stuff...). The narrow-down rule probably works fine in most cases, but for callables, chances are that the $type
may be incorrectly narrowed down too much.
I'm not sure about the consequences of this change. I'd feel better if it could only be applied to native PHP reflections, not parsed user code.
Please try to open a separate PR with an alternative approach:
In theory this should get rid of all false positives. If this alternative PR is not successful then I'll merge this one. |
@ondrejmirtes It seems that EDIT: I accidentally tested it without bleeding edge. So the rest of the comment is not true: https://phpstan.org/r/1bff567d-d9a1-4906-9fe0-83705f7854ab
<?php namespace ParamsArrayIntersectUassoc;
use function PHPStan\Testing\assertType;
var_export(array_uintersect_assoc(
['a' => 'a', 'b' => 'b'],
['c' => 'c', 'd' => 'd'],
function (mixed $a, mixed $b): int {
assertType("'a'|'b'|'c'|'d'", $a);
assertType("'a'|'b'|'c'|'d'", $b);
return 1;
},
)); Results in: 9 Expected type 'a'|'b'|'c'|'d', actual: string
10 Expected type 'a'|'b'|'c'|'d', actual: string So I suppose that should be fixed first. I'll try to have a look (no promises). |
@ondrejmirtes I created a proof-of-concept PR which applies |
@ondrejmirtes I had another look at this, but I'm not convinced that
Would you be willing to move forward with the simple stub approach instead? I'd expect 2 array arguments to be the most common usage, so at least it's something ( Or perhaps even the "variadic in the middle" approach. Though you're right that it's very unexpected, so it could definitely lead to random bugs (I also forgot to look for other places which might need handling - e.g. |
array_diff_uassoc array_diff_ukey array_intersect_uassoc array_intersect_ukey array_udiff_assoc array_udiff_uassoc array_uintersect_assoc array_uintersect_uassoc array_uintersect
See issue 9697
d0f811b
to
cbc7c87
Compare
This pull request has been marked as ready for review. |
This is a fixed version of #1571 (
TK of array-key
as you requested).Fixes phpstan/phpstan#7707
Unfortunately, it doesn't cover all variants due to the limitations of the stubs and the weird interface of the functions. E.g.
results in:
But at least it's a step in the right direction.