1 | <?php |
||
18 | class Blank implements MiddlewareInterface |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * Process an incoming server request by delegating the response creation to a handler. |
||
23 | * |
||
24 | * @param ServerRequestInterface $request an Http Request |
||
25 | * @param RequestHandlerInterface $handler |
||
26 | * |
||
27 | * @return ResponseInterface |
||
28 | */ |
||
29 | 1 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
34 | } |
||
35 |