We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d68dfa commit 47bc3deCopy full SHA for 47bc3de
README.md
@@ -29,9 +29,9 @@ $router = (new Router())
29
/**
30
* @var ServerRequestInterface $request
31
*/
32
-$route = $router->match($request);
+$routeMatching = $router->match($request);
33
34
-$controller = $route->getController();
35
-$action = $route->getAction();
+$controller = $routeMatching->getController();
+$action = $routeMatching->getAction();
36
37
```
0 commit comments