fix: 更新退款通知处理

This commit is contained in:
邹景立 2024-09-25 13:08:34 +08:00
parent 0f9023dfbf
commit 9f27480860
2 changed files with 3 additions and 3 deletions

View File

@ -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
*/ */

View File

@ -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失败');
} }