Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

fix prototype for PHP 7.2 #39

Merged
merged 1 commit into from Oct 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/Http/TestAsset/DummyRouteWithParam.php
Expand Up @@ -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);
}
Expand Down