mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace WePay;
|
||
|
||
use WeChat\Contracts\BasicPay;
|
||
|
||
/**
|
||
* 微信商户退款
|
||
* Class Refund
|
||
* @package WePay
|
||
*/
|
||
class Refund extends BasicPay
|
||
{
|
||
|
||
/**
|
||
* 创建退款订单
|
||
* @param array $options
|
||
* @return array
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
*/
|
||
public function create(array $options)
|
||
{
|
||
$url = 'https://api.mch.weixin.qq.com/secapi/pay/refund';
|
||
return $this->callPostApi($url, $options, true);
|
||
}
|
||
|
||
/**
|
||
* 查询退款
|
||
* @param array $options
|
||
* @return array
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
*/
|
||
public function query(array $options)
|
||
{
|
||
$url = 'https://api.mch.weixin.qq.com/pay/refundquery';
|
||
return $this->callPostApi($url, $options);
|
||
}
|
||
|
||
} |