diff --git a/lib/Client.php b/lib/Client.php index a383cc0..cb9b24f 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -105,7 +105,7 @@ private function buildClient($name = null) if (isset($name)) { $this->path[] = $name; } - $client = new Client($this->host, $this->headers, $this->version, $this->path); + $client = new Client($this->host, $this->headers, $this->version, $this->path, $this->curlOptions); $this->path = []; return $client; }