mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
标准化参数
This commit is contained in:
parent
4e0e9d79cc
commit
cd5ff0228e
@ -126,28 +126,28 @@ abstract class BasicAliPay
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询支付宝订单状态
|
* 查询支付宝订单状态
|
||||||
* @param string $out_trade_no
|
* @param string $outTradeNo
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
* @throws \WeChat\Exceptions\LocalCacheException
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function query($out_trade_no = '')
|
public function query($outTradeNo = '')
|
||||||
{
|
{
|
||||||
$this->options->set('method', 'alipay.trade.query');
|
$this->options->set('method', 'alipay.trade.query');
|
||||||
return $this->getResult(['out_trade_no' => $out_trade_no]);
|
return $this->getResult(['out_trade_no' => $outTradeNo]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支付宝订单退款操作
|
* 支付宝订单退款操作
|
||||||
* @param array|string $options 退款参数或退款商户订单号
|
* @param array|string $options 退款参数或退款商户订单号
|
||||||
* @param null $refund_amount 退款金额
|
* @param null $refundAmount 退款金额
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
* @throws \WeChat\Exceptions\LocalCacheException
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function refund($options, $refund_amount = null)
|
public function refund($options, $refundAmount = null)
|
||||||
{
|
{
|
||||||
if (!is_array($options)) $options = ['out_trade_no' => $options, 'refund_amount' => $refund_amount];
|
if (!is_array($options)) $options = ['out_trade_no' => $options, 'refund_amount' => $refundAmount];
|
||||||
$this->options->set('method', 'alipay.trade.refund');
|
$this->options->set('method', 'alipay.trade.refund');
|
||||||
return $this->getResult($options);
|
return $this->getResult($options);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user