| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | interface MiddlewareInterface |
||
|
|
|||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Execute this middleware. |
||
| 12 | * |
||
| 13 | * @param ServerRequestInterface $request PSR7 request |
||
| 14 | * @param ResponseInterface $response PSR7 response |
||
| 15 | * @param callable $next Next middleware |
||
| 16 | * |
||
| 17 | * @return ResponseInterface |
||
| 18 | */ |
||
| 19 | public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next); |
||
| 20 | } |
||
| 21 |