diff --git a/HttpServer/Client/Curl.php b/HttpServer/Client/Curl.php index b2ec6070..653c5cd6 100644 --- a/HttpServer/Client/Curl.php +++ b/HttpServer/Client/Curl.php @@ -143,10 +143,10 @@ class Curl extends ClientAbstracts private function execute($curl) { $output = curl_exec($curl); + var_dump($output); if ($output === false) { return $this->fail(400, curl_error($curl)); } - var_dump($output); return $this->parseResponse($curl, $output); }