Skip to content

Commit

Permalink
Merge pull request #694 from StrykeSlammerII/patch-1
Browse files Browse the repository at this point in the history
Removed excess backtick
  • Loading branch information
l0gicgate committed Mar 3, 2024
2 parents 1fe1f72 + b286383 commit ebb1119
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/v4/middleware/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Routing Middleware
---

The routing has been implemented as middleware.`
The routing has been implemented as middleware.
We are still using [FastRoute](https://github.com/nikic/FastRoute) as the default router but it is not tightly coupled to it.
If you wanted to implement another routing library you could by creating your own implementations of the routing interfaces.
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` which create a bridge between Slim's components and the routing library.
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.
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` create a bridge between Slim's components and the routing library.
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.

## Usage
```php
Expand Down

0 comments on commit ebb1119

Please sign in to comment.