diff --git a/common/HttpClient.php b/common/HttpClient.php index 0ea6720..9812185 100644 --- a/common/HttpClient.php +++ b/common/HttpClient.php @@ -409,7 +409,6 @@ class HttpClient } $client->setData($data); $client->execute($url); - var_dump($client); } else if (strtolower($this->method) == self::DELETE) { $client->setMethod('DELETE'); if (!is_string($data)) { @@ -420,6 +419,7 @@ class HttpClient } else { $client->post($url, $data); } + var_dump($client); return $client; }