From e5a5149bdb4b11e3b32130a4c0be62b6a7a3306b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 6 May 2019 11:38:26 +0200 Subject: [PATCH] Fix escape sequence is invalid in character clas --- src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php b/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php index 1db72935b0..a3a24a8cb7 100644 --- a/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +++ b/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php @@ -84,7 +84,7 @@ private function convertElseifToIf(Tokens $tokens, $index) $whitespace = ''; for ($previous = $index - 1; $previous > 0; --$previous) { $token = $tokens[$previous]; - if ($token->isWhitespace() && Preg::match('/(\R[^\R]*)$/', $token->getContent(), $matches)) { + if ($token->isWhitespace() && Preg::match('/(\R\N*)$/', $token->getContent(), $matches)) { $whitespace = $matches[1]; break;