Skip to content

Commit d8fbe12

Browse files
committed
Code style fix
1 parent 46cfc3b commit d8fbe12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Middleware to normalize the trailing slash of the uri path. By default removes t
1313

1414
* PHP >= 7.0
1515
* A [PSR-7](https://packagist.org/providers/psr/http-message-implementation) http message implementation ([Diactoros](https://github.com/zendframework/zend-diactoros), [Guzzle](https://github.com/guzzle/psr7), [Slim](https://github.com/slimphp/Slim), etc...)
16-
* A [PSR-15](https://github.com/http-interop/http-middleware) middleware dispatcher ([Middleman](https://github.com/mindplay-dk/middleman), etc...)
16+
* A [PSR-15 middleware dispatcher](https://github.com/middlewares/awesome-psr15-middlewares#dispatcher)
1717

1818
## Installation
1919

src/TrailingSlash.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
namespace Middlewares;
55

6-
use Psr\Http\Server\MiddlewareInterface;
7-
use Psr\Http\Server\RequestHandlerInterface;
86
use Psr\Http\Message\ResponseInterface;
97
use Psr\Http\Message\ServerRequestInterface;
8+
use Psr\Http\Server\MiddlewareInterface;
9+
use Psr\Http\Server\RequestHandlerInterface;
1010

1111
class TrailingSlash implements MiddlewareInterface
1212
{

0 commit comments

Comments
 (0)