summaryrefslogtreecommitdiff
path: root/src/Middleware/RouteDispatcher.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Middleware/RouteDispatcher.php')
-rw-r--r--src/Middleware/RouteDispatcher.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Middleware/RouteDispatcher.php b/src/Middleware/RouteDispatcher.php
index 24a7906d..c20eba4b 100644
--- a/src/Middleware/RouteDispatcher.php
+++ b/src/Middleware/RouteDispatcher.php
@@ -50,7 +50,8 @@ class RouteDispatcher implements MiddlewareInterface
$path = $request->getPathInfo();
}
- $route = $this->dispatcher->dispatch($request->getMethod(), urldecode($path));
+ $path = urldecode($path);
+ $route = $this->dispatcher->dispatch($request->getMethod(), $path);
$status = $route[0];
if ($status == FastRouteDispatcher::NOT_FOUND) {
@@ -70,6 +71,7 @@ class RouteDispatcher implements MiddlewareInterface
$routeHandler = $route[1];
$request = $request->withAttribute('route-request-handler', $routeHandler);
+ $request = $request->withAttribute('route-request-path', $path);
$vars = $route[2];
foreach ($vars as $name => $value) {