You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/v4/middleware/routing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
title: Routing Middleware
3
3
---
4
4
5
-
The routing has been implemented as middleware.`
5
+
The routing has been implemented as middleware.
6
6
We are still using [FastRoute](https://github.com/nikic/FastRoute) as the default router but it is not tightly coupled to it.
7
7
If you wanted to implement another routing library you could by creating your own implementations of the routing interfaces.
8
-
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface`which create a bridge between Slim's components and the routing library.
9
-
If you were using `determineRouteBeforeAppMiddleware`, you need to add the `Middleware\RoutingMiddleware` middleware to your application just before your call `run()`` to maintain the previous behaviour.
8
+
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` create a bridge between Slim's components and the routing library.
9
+
If you were using `determineRouteBeforeAppMiddleware`, you need to add the `Middleware\RoutingMiddleware` middleware to your application just before your call to `run()` to maintain the previous behaviour.
0 commit comments