response = $response; } /** * Process an incoming server request and return a response, optionally delegating * response creation to a handler. * * Could be used to group middleware * * @param ServerRequestInterface $request * @param RequestHandlerInterface $handler * @return ResponseInterface */ public function process( ServerRequestInterface $request, RequestHandlerInterface $handler ): ResponseInterface { return $this->response; } }