From 7f04bc8af79f71a78fa476cfe6a55c5109ee46c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 31 Mar 2020 15:13:16 +0800 Subject: [PATCH] add clear --- wchat/common/HttpClient.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index 8a32398..ed585ee 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -392,6 +392,8 @@ class HttpClient $client = new SClient($host, $this->getHostPort(), $this->isSSL); echo $host . ':' . $this->getHostPort() . $url . PHP_EOL; if (!empty($this->ssl_cert_file) && !empty($this->ssl_key_file)) { + echo $this->ssl_cert_file . PHP_EOL; + echo $this->ssl_key_file . PHP_EOL; $client->set([ 'ssl_cert_file' => $this->ssl_cert_file, 'ssl_key_file' => $this->ssl_key_file,