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

Fix too-long line

This commit is contained in:
Matthew Brown 2022-02-08 16:28:21 -05:00
parent e35e6fe992
commit e130dd9b1c

View File

@ -395,7 +395,11 @@ class LoopAnalyzer
}
foreach ($post_expressions as $post_expression) {
if (ExpressionAnalyzer::analyze($statements_analyzer, $post_expression, $continue_context) === false) {
if (ExpressionAnalyzer::analyze(
$statements_analyzer,
$post_expression,
$continue_context
) === false) {
return false;
}
}