mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
Fix
This commit is contained in:
parent
48f2430774
commit
2eed29209c
@ -1034,7 +1034,11 @@ final class Populator
|
||||
$implementing_method_id->fq_class_name,
|
||||
);
|
||||
|
||||
if (!$implementing_class_storage->methods[$implementing_method_id->method_name]->abstract
|
||||
$method = $implementing_class_storage->methods[$implementing_method_id->method_name]
|
||||
?? $implementing_class_storage->pseudo_methods[$implementing_method_id->method_name]
|
||||
?? $implementing_class_storage->pseudo_static_methods[$implementing_method_id->method_name];
|
||||
|
||||
if (!$method->abstract
|
||||
|| !empty($storage->methods[$implementing_method_id->method_name]->abstract)
|
||||
) {
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user