From daa4034e3968836ceb246b8231ac47b74e29d8b0 Mon Sep 17 00:00:00 2001 From: whwyy Date: Fri, 1 Dec 2023 17:14:48 +0800 Subject: [PATCH] eee --- common/libs/Aliyun.php | 49 ++++++++++++------------------------------ 1 file changed, 14 insertions(+), 35 deletions(-) diff --git a/common/libs/Aliyun.php b/common/libs/Aliyun.php index 17f7664..eda4724 100644 --- a/common/libs/Aliyun.php +++ b/common/libs/Aliyun.php @@ -5,46 +5,25 @@ namespace wchat\common\libs; class Aliyun { - - /** - * @var string - */ + // APPID public string $appId; + // APP公钥 + public string $appKey; - /** - * @var string - */ - public string $mchCa; - - - /** - * @var string - */ - public string $mchId; - - - /** - * @var string - */ - public string $mchKey; - - - /** - * @var string - */ - public string $mchCert; - - - /** - * @var string - */ + // APP私钥 public string $appSecret; + // APP公钥证书 + public string $appPubSecret; - /** - * @var string - */ - public string $mchSecret; + // 阿里云公钥证书 + public string $aliPubSecret; + + // 阿里云根证书 + public string $aliRootSecret; + + // 是否开启证书模式 + public int $openFileState; } \ No newline at end of file