response = $response; $this->curlInfo = $curlInfo; $this->curlMessage = $curlMessage; } public function getResponse(): ?string { return $this->response; } /** * Gets the curl info from request / response. */ public function getCurlInfo(): array { return $this->curlInfo; } /** * Gets the curl message from request / response. */ public function getCurlMessage(): ?string { return $this->curlMessage; } }