1 | <?php |
||
16 | return new class implements RequestHandlerInterface { |
||
17 | |||
18 | /** |
||
19 | * Dispatch the next available middleware and return the response. |
||
20 | * |
||
21 | * @param ServerRequestInterface $request |
||
22 | * |
||
23 | * @return ResponseInterface |
||
24 | */ |
||
25 | public function handle(ServerRequestInterface $request):ResponseInterface |
||
29 | }; |
||
30 | } |
||
32 |