We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c178e1 commit f5c0361Copy full SHA for f5c0361
src/Provider/ReflectionUsageProvider.php
@@ -65,6 +65,8 @@ private function processMethodCall(MethodCall $node, Scope $scope): array
65
continue;
66
}
67
68
+ // ideally, we should check if T is covariant (marks children as used) or invariant (should not mark children as used)
69
+ // the default changed in PHP 8.4, see: https://github.com/phpstan/phpstan/issues/12459#issuecomment-2607123277
70
foreach ($reflection->getActiveTemplateTypeMap()->getTypes() as $genericType) {
71
foreach ($genericType->getObjectClassReflections() as $genericReflection) {
72
$usedConstants = [
0 commit comments