mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
fix: 更新退款通知处理
This commit is contained in:
parent
0f9023dfbf
commit
9f27480860
@ -92,7 +92,7 @@ class BasicWePay
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取微信支付通知
|
* 获取微信支付通知
|
||||||
* @param string $xml
|
* @param string|array $xml
|
||||||
* @return array
|
* @return array
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
*/
|
*/
|
||||||
|
@ -57,14 +57,14 @@ class Refund extends BasicWePay
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取退款通知
|
* 获取退款通知
|
||||||
* @param string $xml
|
* @param string|array $xml
|
||||||
* @return array
|
* @return array
|
||||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
*/
|
*/
|
||||||
public function getNotify($xml = '')
|
public function getNotify($xml = '')
|
||||||
{
|
{
|
||||||
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
$data = is_array($xml) ? $xml : Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||||
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
||||||
throw new InvalidResponseException('获取退款通知XML失败!');
|
throw new InvalidResponseException('获取退款通知XML失败!');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user