handler = $handler; } /** * Proxies to decorated handler to handle the request. */ public function handle(ServerRequestInterface $request): ResponseInterface { return $this->handler->handle($request); } /** * Proxies to decorated handler to handle the request. */ public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { return $this->handler->handle($request); } }