diff --git a/CurlClient.php b/CurlClient.php index a115b15..6f10277 100644 --- a/CurlClient.php +++ b/CurlClient.php @@ -127,6 +127,8 @@ class CurlClient extends ClientAbstracts if (!empty($this->caPath)) { curl_setopt($this->client, CURLOPT_CAINFO, $this->caPath); } + + var_dump($path,$method); } @@ -154,7 +156,6 @@ class CurlClient extends ClientAbstracts private function execute(): void { $output = curl_exec($this->client); - var_dump($output); if ($output !== FALSE) { $this->explode($output); } else {