diff --git a/HttpServer/Client/Curl.php b/HttpServer/Client/Curl.php index 240f6e6f..a225450b 100644 --- a/HttpServer/Client/Curl.php +++ b/HttpServer/Client/Curl.php @@ -63,9 +63,7 @@ class Curl extends ClientAbstracts [$host, $isHttps, $path] = $this->matchHost($path); $resource = $this->do(curl_init($host . $path), $host . $path, self::POST); - curl_setopt($resource, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($resource, CURLOPT_SSL_VERIFYPEER, FALSE); - curl_setopt($resource, CURLOPT_SSL_VERIFYHOST, false); + var_dump($params); curl_setopt($resource, CURLOPT_POSTFIELDS, $params); if ($isHttps !== false) {