From 2b6831ba105620a74a6f2968bb8f11a11d58b3b9 Mon Sep 17 00:00:00 2001 From: Matthew Brown Date: Sat, 7 Dec 2019 01:38:24 -0500 Subject: [PATCH] Fix too-long line --- src/Psalm/Internal/Analyzer/Statements/Block/IfAnalyzer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Psalm/Internal/Analyzer/Statements/Block/IfAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Block/IfAnalyzer.php index 0d1d6b9b7..da0b5425c 100644 --- a/src/Psalm/Internal/Analyzer/Statements/Block/IfAnalyzer.php +++ b/src/Psalm/Internal/Analyzer/Statements/Block/IfAnalyzer.php @@ -564,7 +564,8 @@ class IfAnalyzer $if_context->branch_point = $branch_point; } - // we need to clone the current context so our ongoing updates to $outer_context don't mess with elseif/else blocks + // we need to clone the current context so our ongoing updates + // to $outer_context don't mess with elseif/else blocks $original_context = clone $outer_context; $if_context->inside_conditional = true;