Skip to content

Commit f5c0361

Browse files
committed
Note ReflectionClass variance
1 parent 7c178e1 commit f5c0361

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Provider/ReflectionUsageProvider.php

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ private function processMethodCall(MethodCall $node, Scope $scope): array
6565
continue;
6666
}
6767

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
6870
foreach ($reflection->getActiveTemplateTypeMap()->getTypes() as $genericType) {
6971
foreach ($genericType->getObjectClassReflections() as $genericReflection) {
7072
$usedConstants = [

0 commit comments

Comments
 (0)