From a52610cf2aa52b1530fbbed4b2bcb6dcabbce673 Mon Sep 17 00:00:00 2001 From: whwyy Date: Fri, 28 Nov 2025 11:39:14 +0800 Subject: [PATCH] ea --- CurlClient.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 {