1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00

Fix too-long line

This commit is contained in:
Brown 2020-07-02 15:32:13 -04:00
parent cb94764d22
commit 1745f5cafa

View File

@ -582,7 +582,8 @@ class LoopAnalyzer
&& !isset($loop_scope->loop_parent_context->vars_in_scope[$var_id])
&& isset($inner_context->unreferenced_vars[$var_id])
) {
$loop_scope->loop_parent_context->unreferenced_vars[$var_id] = $inner_context->unreferenced_vars[$var_id];
$loop_scope->loop_parent_context->unreferenced_vars[$var_id]
= $inner_context->unreferenced_vars[$var_id];
}
$loop_scope->loop_parent_context->vars_in_scope[$var_id] = $type;