From 8631128ae3cbe5f162cfd3b36708f87e49d8f6e4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Sep 2017 12:28:59 +0200 Subject: import from Fedora --- php-jakubledl-dissect-fix-redefinition-of-parameter.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 php-jakubledl-dissect-fix-redefinition-of-parameter.patch (limited to 'php-jakubledl-dissect-fix-redefinition-of-parameter.patch') diff --git a/php-jakubledl-dissect-fix-redefinition-of-parameter.patch b/php-jakubledl-dissect-fix-redefinition-of-parameter.patch new file mode 100644 index 0000000..2938a03 --- /dev/null +++ b/php-jakubledl-dissect-fix-redefinition-of-parameter.patch @@ -0,0 +1,13 @@ +diff --git a/tests/Dissect/Parser/LALR1/ArithGrammar.php b/tests/Dissect/Parser/LALR1/ArithGrammar.php +index 51a75f2..5a06c5e 100644 +--- a/tests/Dissect/Parser/LALR1/ArithGrammar.php ++++ b/tests/Dissect/Parser/LALR1/ArithGrammar.php +@@ -39,7 +39,7 @@ class ArithGrammar extends Grammar + }) + + ->is('(', 'Additive', ')') +- ->call(function ($_, $e, $_) { ++ ->call(function ($_, $e, $_2) { + return $e; + }); + -- cgit