diff --git a/lib/Client.php b/lib/Client.php index bf36535..b6bcd4a 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -201,7 +201,7 @@ class Client * @var bool */ protected $verifySSLCerts; - + /** * @var bool */ @@ -253,6 +253,20 @@ public function getHost() return $this->host; } + /** + * Set host + * + * @param string $host + * + * @return Client + */ + public function setHost(string $host) + { + $this->host = $host; + + return $this; + } + /** * @return array */