mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
Do not stop at magic setter when property referenced locally
This commit is contained in:
parent
3452c7853f
commit
18af05fbd9
@ -587,7 +587,7 @@ class AssignmentChecker
|
||||
return null;
|
||||
}
|
||||
|
||||
if (MethodChecker::methodExists($lhs_type_part . '::__set', $file_checker)) {
|
||||
if ($lhs_var_id !== '$this' && MethodChecker::methodExists($lhs_type_part . '::__set', $file_checker)) {
|
||||
if ($var_id) {
|
||||
$context->vars_in_scope[$var_id] = Type::getMixed();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user