summaryrefslogtreecommitdiffstats
path: root/39.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-06-19 10:03:55 +0200
committerRemi Collet <remi@remirepo.net>2018-06-19 10:03:55 +0200
commit7f2f3e61f800d313d6f843edbb868c82f22cfca5 (patch)
tree045d1947d65ecb8793a91b6c30aa091f0bf32d83 /39.patch
parent9d1f60731de610987803d8f791638c98607d05af (diff)
update to 3.1.0
raise dependency on PHP 5.6 raise dependency on container-interop/container-interop 1.2 raise dependency on zendframework/zend-http 2.6 raise dependency on zendframework/zend-servicemanager 2.7.8 raise dependency on zendframework/zend-stdlib 2.7.7
Diffstat (limited to '39.patch')
-rw-r--r--39.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/39.patch b/39.patch
deleted file mode 100644
index 081d47e..0000000
--- a/39.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 27a4b8310cd8fd968d25ab7ee61798a279f87601 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Tue, 24 Oct 2017 13:16:43 +0200
-Subject: [PATCH] fix prototype for PHP 7.2
-
----
- test/Http/TestAsset/DummyRouteWithParam.php | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/Http/TestAsset/DummyRouteWithParam.php b/test/Http/TestAsset/DummyRouteWithParam.php
-index e4e99f8..340cc58 100644
---- a/test/Http/TestAsset/DummyRouteWithParam.php
-+++ b/test/Http/TestAsset/DummyRouteWithParam.php
-@@ -22,7 +22,7 @@ class DummyRouteWithParam extends DummyRoute
- * @param RequestInterface $request
- * @return RouteMatch
- */
-- public function match(RequestInterface $request)
-+ public function match(RequestInterface $request, $pathOffset = null)
- {
- return new RouteMatch(['foo' => 'bar'], -4);
- }