From 03cce0ab0af654dcd10b1f06cd371ac829850ca0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 29 Aug 2019 13:13:22 +0200 Subject: v2.15.2 --- 4406.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 4406.patch (limited to '4406.patch') diff --git a/4406.patch b/4406.patch deleted file mode 100644 index e1c643f..0000000 --- a/4406.patch +++ /dev/null @@ -1,22 +0,0 @@ -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; -- cgit