[更新]修改支付宝支付

This commit is contained in:
Anyon 2018-11-12 22:10:45 +08:00
parent dd9ff2856f
commit b8fd2795c7

View File

@ -200,11 +200,10 @@ abstract class BasicAliPay
$method = str_replace('.', '_', $this->options['method']) . '_response'; $method = str_replace('.', '_', $this->options['method']) . '_response';
if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') {
throw new \WeChat\Exceptions\InvalidResponseException( throw new \WeChat\Exceptions\InvalidResponseException(
"\nResultError" . "Error: " .
(empty($data[$method]['code']) ? '' : "\n{$data[$method]['msg']}[{$data[$method]['code']}]") . (empty($data[$method]['code']) ? '' : "{$data[$method]['msg']} [{$data[$method]['code']}]\r\n") .
(empty($data[$method]['sub_code']) ? '' : "\n{$data[$method]['sub_msg']}[{$data[$method]['sub_code']}]\n"), (empty($data[$method]['sub_code']) ? '' : "{$data[$method]['sub_msg']} [{$data[$method]['sub_code']}]\r\n"),
$data[$method]['code'], $data[$method]['code'], $data
$data
); );
} }
return $this->verify($data[$method], $data['sign'], true); return $this->verify($data[$method], $data['sign'], true);