Skip to content

Commit 21ccdb8

Browse files
committed
Code style fix
1 parent e0c50a1 commit 21ccdb8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This package provides the `Middlewares\HttpErrorException` that you can use to s
1515

1616
* PHP >= 7.0
1717
* 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...)
18-
* A [PSR-15](https://github.com/http-interop/http-middleware) middleware dispatcher ([Middleman](https://github.com/mindplay-dk/middleman), etc...)
18+
* A [PSR-15 middleware dispatcher](https://github.com/middlewares/awesome-psr15-middlewares#dispatcher)
1919

2020
## Installation
2121

src/ErrorHandler.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
use Throwable;
1111

1212
class ErrorHandler implements MiddlewareInterface

src/ErrorHandlerDefault.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
namespace Middlewares;
55

6-
use Psr\Http\Server\RequestHandlerInterface;
76
use Psr\Http\Message\ResponseInterface;
87
use Psr\Http\Message\ServerRequestInterface;
8+
use Psr\Http\Server\RequestHandlerInterface;
99

1010
class ErrorHandlerDefault implements RequestHandlerInterface
1111
{

0 commit comments

Comments
 (0)