From 73e5e54a301212d4c24f933cbeea218753ce7592 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Fri, 26 Nov 2021 17:22:22 +0100 Subject: [PATCH] Update IfElseAnalyzer.php --- .../Internal/Analyzer/Statements/Block/IfElseAnalyzer.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Psalm/Internal/Analyzer/Statements/Block/IfElseAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Block/IfElseAnalyzer.php index a2daa8a6fe6..40d8385b5ae 100644 --- a/src/Psalm/Internal/Analyzer/Statements/Block/IfElseAnalyzer.php +++ b/src/Psalm/Internal/Analyzer/Statements/Block/IfElseAnalyzer.php @@ -130,10 +130,10 @@ public static function analyze( $if_clauses = []; } - $if_clauses = array_map( - /** - * @return Clause - */ + $if_clauses = array_map( + /** + * @return Clause + */ function (Clause $c) use ($mixed_var_ids, $cond_object_id): Clause { $keys = array_keys($c->possibilities);