File tree 2 files changed +28
-0
lines changed
src/Psalm/Internal/Analyzer/Statements/Expression/Call/Method
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,12 @@ private static function findPseudoMethodAndClassStorages(
435
435
}
436
436
437
437
$ ancestors = $ static_class_storage ->class_implements ;
438
+ foreach ($ static_class_storage ->namedMixins as $ namedObject ) {
439
+ $ type = $ namedObject ->value ;
440
+ if ($ type ) {
441
+ $ ancestors [$ type ] = true ;
442
+ }
443
+ }
438
444
439
445
foreach ($ ancestors as $ fq_class_name => $ _ ) {
440
446
$ class_storage = $ codebase ->classlikes ->getStorageFor ($ fq_class_name );
Original file line number Diff line number Diff line change @@ -596,6 +596,28 @@ class FooModel extends Model {}
596
596
'$g ' => 'list<FooModel> ' ,
597
597
],
598
598
],
599
+ 'mixinInheritMagicMethods ' => [
600
+ 'code ' => '<?php
601
+ /**
602
+ * @method $this active()
603
+ */
604
+ class A {
605
+ public function __call(string $name, array $arguments) {}
606
+ }
607
+
608
+ /**
609
+ * @mixin A
610
+ */
611
+ class B {
612
+ public function __call(string $name, array $arguments) {}
613
+ }
614
+
615
+ $b = new B;
616
+ $c = $b->active(); ' ,
617
+ 'assertions ' => [
618
+ '$c ' => 'B ' ,
619
+ ],
620
+ ],
599
621
];
600
622
}
601
623
You can’t perform that action at this time.
0 commit comments