From dc73718c6be449ff2fc0c8c54d232219ada7846e Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 2 Feb 2018 20:31:16 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E7=BB=9F=E4=B8=80=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Test/pay-refund-create.php | 2 +- WeChat/Pay.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/pay-refund-create.php b/Test/pay-refund-create.php index b344a0c..d25f2fa 100644 --- a/Test/pay-refund-create.php +++ b/Test/pay-refund-create.php @@ -29,7 +29,7 @@ try { 'total_fee' => '1', 'refund_fee' => '1', ]; - $result = $wechat->refund($options); + $result = $wechat->createRefund($options); var_export($result); diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 93c40f7..48b42de 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -108,7 +108,7 @@ class Pay * @return array * @throws InvalidResponseException */ - public function refund(array $options) + public function createRefund(array $options) { $url = 'https://api.mch.weixin.qq.com/secapi/pay/refund'; return $this->callPostApi($url, $options, true);