| 1 | <?php |
||
| 16 | class ResolveEndpointMiddleware implements MiddlewareInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var EndpointRepository |
||
| 20 | */ |
||
| 21 | private $endpointRepository; |
||
| 22 | |||
| 23 | public function __construct(EndpointRepository $endpointRepository) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 39 | } |
||
| 40 |