Skip to content

Commit 86f503a

Browse files
committedNov 8, 2023
Docblock psudo methods can be inherited via @mixin
Fixes #3556
1 parent b775d29 commit 86f503a

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
 

‎src/Psalm/Internal/Analyzer/Statements/Expression/Call/Method/MissingMethodCallHandler.php

+6
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,12 @@ private static function findPseudoMethodAndClassStorages(
435435
}
436436

437437
$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+
}
438444

439445
foreach ($ancestors as $fq_class_name => $_) {
440446
$class_storage = $codebase->classlikes->getStorageFor($fq_class_name);

‎tests/MixinAnnotationTest.php

+22
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,28 @@ class FooModel extends Model {}
596596
'$g' => 'list<FooModel>',
597597
],
598598
],
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+
],
599621
];
600622
}
601623

0 commit comments

Comments
 (0)