From f8d23d4c50a9bf0133899d180fe253819879367f Mon Sep 17 00:00:00 2001 From: Anyon Date: Sat, 3 Feb 2018 14:23:14 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E5=9F=BA=E7=B1=BB=E5=8F=8A=E6=B5=8B=E8=AF=95=E6=A1=88?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Test/pay-refund-create.php | 1 + Test/pay-refund-query.php | 7 ++++--- WeChat/Exceptions/InvalidArgumentException.php | 2 +- WeChat/Exceptions/InvalidDecryptException.php | 2 +- WeChat/Exceptions/InvalidResponseException.php | 2 +- WeChat/Exceptions/LocalCacheException.php | 2 +- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Test/pay-refund-create.php b/Test/pay-refund-create.php index d25f2fa..02b554b 100644 --- a/Test/pay-refund-create.php +++ b/Test/pay-refund-create.php @@ -26,6 +26,7 @@ try { // 4. 组装参数,可以参考官方商户文档 $options = [ 'transaction_id' => '1008450740201411110005820873', + 'out_refund_no' => '商户退款单号', 'total_fee' => '1', 'refund_fee' => '1', ]; diff --git a/Test/pay-refund-query.php b/Test/pay-refund-query.php index b344a0c..a812ac4 100644 --- a/Test/pay-refund-query.php +++ b/Test/pay-refund-query.php @@ -26,10 +26,11 @@ try { // 4. 组装参数,可以参考官方商户文档 $options = [ 'transaction_id' => '1008450740201411110005820873', - 'total_fee' => '1', - 'refund_fee' => '1', + // 'out_trade_no' => '商户订单号', + // 'out_refund_no' => '商户退款单号' + // 'refund_id' => '微信退款单号', ]; - $result = $wechat->refund($options); + $result = $wechat->queryRefund($options); var_export($result); diff --git a/WeChat/Exceptions/InvalidArgumentException.php b/WeChat/Exceptions/InvalidArgumentException.php index 44a7802..993c4e0 100644 --- a/WeChat/Exceptions/InvalidArgumentException.php +++ b/WeChat/Exceptions/InvalidArgumentException.php @@ -32,7 +32,7 @@ class InvalidArgumentException extends \InvalidArgumentException * @param integer $code * @param array $raw */ - public function __construct($message, $code, $raw = []) + public function __construct($message, $code = 0, $raw = []) { parent::__construct($message, intval($code)); $this->raw = $raw; diff --git a/WeChat/Exceptions/InvalidDecryptException.php b/WeChat/Exceptions/InvalidDecryptException.php index 986dbe3..f45c058 100644 --- a/WeChat/Exceptions/InvalidDecryptException.php +++ b/WeChat/Exceptions/InvalidDecryptException.php @@ -32,7 +32,7 @@ class InvalidDecryptException extends \Exception * @param integer $code * @param array $raw */ - public function __construct($message, $code, $raw = []) + public function __construct($message, $code = 0, $raw = []) { parent::__construct($message, intval($code)); $this->raw = $raw; diff --git a/WeChat/Exceptions/InvalidResponseException.php b/WeChat/Exceptions/InvalidResponseException.php index d5a2c12..c3cb892 100644 --- a/WeChat/Exceptions/InvalidResponseException.php +++ b/WeChat/Exceptions/InvalidResponseException.php @@ -32,7 +32,7 @@ class InvalidResponseException extends \Exception * @param integer $code * @param array $raw */ - public function __construct($message, $code, $raw = []) + public function __construct($message, $code = 0, $raw = []) { parent::__construct($message, intval($code)); $this->raw = $raw; diff --git a/WeChat/Exceptions/LocalCacheException.php b/WeChat/Exceptions/LocalCacheException.php index ce22934..35be83a 100644 --- a/WeChat/Exceptions/LocalCacheException.php +++ b/WeChat/Exceptions/LocalCacheException.php @@ -33,7 +33,7 @@ class LocalCacheException extends \Exception * @param integer $code * @param array $raw */ - public function __construct($message, $code, $raw = []) + public function __construct($message, $code = 0, $raw = []) { parent::__construct($message, intval($code)); $this->raw = $raw;