From 9d9a94593be581edde442e19b99ccc7fe11f376d Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 25 May 2018 16:25:32 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=8F=82=E6=95=B0=E8=B0=83?= =?UTF-8?q?=E6=95=B4(=E9=9D=9E=E5=BF=85=E8=A6=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePay/Transfers.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/WePay/Transfers.php b/WePay/Transfers.php index 410aa8b..f86d147 100644 --- a/WePay/Transfers.php +++ b/WePay/Transfers.php @@ -32,10 +32,10 @@ class Transfers extends BasicPay */ public function create(array $options) { - $this->params->set('mchid', $this->config->get('mch_id')); - $this->params->set('mch_appid', $this->config->get('appid')); $this->params->offsetUnset('appid'); $this->params->offsetUnset('mch_id'); + $this->params->set('mchid', $this->config->get('mch_id')); + $this->params->set('mch_appid', $this->config->get('appid')); $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers'; return $this->callPostApi($url, $options, true, 'MD5', false); } @@ -48,11 +48,11 @@ class Transfers extends BasicPay */ public function query($partnerTradeNo) { - $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo'; - $this->params->set('appid', $this->config->get('appid')); - $this->params->set('mch_id', $this->config->get('mch_id')); $this->params->offsetUnset('mchid'); $this->params->offsetUnset('mch_appid'); + $this->params->set('appid', $this->config->get('appid')); + $this->params->set('mch_id', $this->config->get('mch_id')); + $url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo'; return $this->callPostApi($url, ['partner_trade_no' => $partnerTradeNo], true, 'MD5', false); }