1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

Fix long line

This commit is contained in:
Matt Brown 2018-01-25 14:19:22 -05:00
parent 450618cc35
commit 75fd14c492

View File

@ -47,7 +47,14 @@ class DoChecker
}
}
LoopChecker::analyze($statements_checker, $stmt->stmts, $stmt->cond ? [$stmt->cond] : [], [], $loop_scope, $inner_loop_context);
LoopChecker::analyze(
$statements_checker,
$stmt->stmts,
$stmt->cond ? [$stmt->cond] : [],
[],
$loop_scope,
$inner_loop_context
);
foreach ($do_context->vars_in_scope as $var_id => $type) {
if (!isset($context->vars_in_scope[$var_id])) {