mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修正参数描述及名称
This commit is contained in:
parent
cf8eb26a0a
commit
80322423e8
@ -54,16 +54,16 @@ class Redpack extends BasicPay
|
||||
|
||||
/**
|
||||
* 查询红包记录
|
||||
* @param array $mch_billno 商户发放红包的商户订单号
|
||||
* @param string $mchBillno 商户发放红包的商户订单号
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function query($mch_billno)
|
||||
public function query($mchBillno)
|
||||
{
|
||||
$this->params->offsetUnset('wxappid');
|
||||
$this->params->set('appid', $this->config->get('appid'));
|
||||
$url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/gethbinfo";
|
||||
return $this->callPostApi($url, ['mch_billno' => $mch_billno, 'bill_type' => 'MCHT'], true, 'MD5', false);
|
||||
return $this->callPostApi($url, ['mch_billno' => $mchBillno, 'bill_type' => 'MCHT'], true, 'MD5', false);
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user