From f726a62718251bc76af71c0cd0a46e60b4974a62 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 17 Dec 2020 17:17:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Order.php | 16 ++++++++-------- WePayV3/Refund.php | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 0901d4b..cd0f178 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -20,7 +20,7 @@ use WeChat\Exceptions\LocalCacheException; use WePayV3\Contracts\BasicWePay; /** - * 微信订单接口 + * 订单支付接口 * Class Order * @package WePayV3 */ @@ -32,14 +32,14 @@ class Order extends BasicWePay const WXPAY_NATIVE = 'native'; /** - * 创建订单 - * @param string $type - * @param string $options + * 创建支付订单 + * @param string $type 支付类型 + * @param string $json 支付参数 * @return array * @throws InvalidResponseException * @throws LocalCacheException */ - public function create($type, $options) + public function create($type, $json) { $types = [ 'h5' => '/v3/pay/transactions/h5', @@ -50,13 +50,13 @@ class Order extends BasicWePay if (empty($types[$type])) { throw new InvalidArgumentException("Payment {$type} not definded."); } else { - return $this->doRequest('POST', $types[$type], $options, true); + return $this->doRequest('POST', $types[$type], $json, true); } } /** - * 订单查询 - * @param string $orderNo + * 支付订单查询 + * @param string $orderNo 订单单号 * @return array * @throws InvalidResponseException * @throws LocalCacheException diff --git a/WePayV3/Refund.php b/WePayV3/Refund.php index 82c5dfc..1c97c8d 100644 --- a/WePayV3/Refund.php +++ b/WePayV3/Refund.php @@ -26,20 +26,20 @@ use WePayV3\Contracts\BasicWePay; class Refund extends BasicWePay { /** - * 创建支付订单 - * @param string $data + * 创建退款订单 + * @param string $json 退款参数 * @return array * @throws InvalidResponseException * @throws LocalCacheException */ - public function create($data) + public function create($json) { - return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', $data, true); + return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', $json, true); } /** - * 退款信息查询 - * @param string $refundNo + * 退款订单查询 + * @param string $refundNo 退款单号 * @return array * @throws InvalidResponseException * @throws LocalCacheException