From f67e5139d0b4d928dbdf7bb2543dd8535e3167af Mon Sep 17 00:00:00 2001 From: Tsvetelin Tsonev Date: Sat, 21 Apr 2018 12:41:43 +0200 Subject: [PATCH] Update HttpClient.php --- src/Http/HttpClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/HttpClient.php b/src/Http/HttpClient.php index 3d8395b..fc95e00 100644 --- a/src/Http/HttpClient.php +++ b/src/Http/HttpClient.php @@ -79,7 +79,7 @@ class HttpClient implements HttpClientInterface { * @param string $responseType Response format - json, xml. */ public function __construct(string $url, int $port, string $rootName, string $rootPassword, string $responseType) { - $this->client = new \GuzzleHttp\Client(array('curl' => array(CURLOPT_SSL_VERIFYPEER => false))); + $this->client = new \GuzzleHttp\Client(array('curl' => array('CURLOPT_SSL_VERIFYPEER' => false))); $this->queryStringBuilder = new QueryStringBuilder(); $this->rootName = $rootName; $this->rootPassword = $rootPassword;