request = $request; $this->response = $response; $this->user = $user; $this->context = $context; } public function getUser() { return $this->user; } public function getRequest() { return $this->request; } public function getResponse() { return $this->response; } public function setResponse(Response $response) { $this->response = $response; } public function getContext() { return $this->context; } }