From 2aafb8a7849c80ef99cb9f310706e3f18f352e0b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 15 Oct 2018 07:47:10 +0200 Subject: add adapted upstream patch for PHP 7.3 --- 227f803c33aad0c004f77ca61815ee8e76d94788.patch | 53 ++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 227f803c33aad0c004f77ca61815ee8e76d94788.patch (limited to '227f803c33aad0c004f77ca61815ee8e76d94788.patch') diff --git a/227f803c33aad0c004f77ca61815ee8e76d94788.patch b/227f803c33aad0c004f77ca61815ee8e76d94788.patch new file mode 100644 index 0000000..0b20914 --- /dev/null +++ b/227f803c33aad0c004f77ca61815ee8e76d94788.patch @@ -0,0 +1,53 @@ +Adapted for 7.3 + + +From 227f803c33aad0c004f77ca61815ee8e76d94788 Mon Sep 17 00:00:00 2001 +From: Sebastian Bergmann +Date: Mon, 28 May 2018 15:38:20 +0200 +Subject: [PATCH] Make this code compatible with PHP 7.3. + +See https://externals.io/message/102147 for details. +--- + tests/ParserTest.php | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/tests/ParserTest.php b/tests/ParserTest.php +index a3667e3..4a4558d 100644 +--- a/tests/ParserTest.php ++++ b/tests/ParserTest.php +@@ -74,7 +74,7 @@ final class ParserTest extends TestCase + + public function testParseWithRemovedLines() + { +- $content = <<parser->parse($content); + $this->assertInternalType('array', $diffs); + $this->assertContainsOnlyInstancesOf(Diff::class, $diffs); +@@ -117,7 +117,7 @@ A; + + public function testParseDiffForMulitpleFiles() + { +- $content = <<parser->parse($content); + $this->assertCount(2, $diffs); + -- cgit