From 0b086a29d799ac1c7e04fedddd5ea38e4a885657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 23 Mar 2021 18:12:26 +0800 Subject: [PATCH] Update Custom.php --- WePay/Custom.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WePay/Custom.php b/WePay/Custom.php index 593a00e..2171ea4 100644 --- a/WePay/Custom.php +++ b/WePay/Custom.php @@ -32,7 +32,7 @@ class Custom extends BasicWePay * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ - public function get(array $options) + public function get(array $options = []) { $url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclarequery'; return $this->callPostApi($url, $options, false, 'MD5'); @@ -46,7 +46,7 @@ class Custom extends BasicWePay * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ - public function reset(array $options) + public function reset(array $options = []) { $url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/newcustoms/customdeclareredeclare'; return $this->callPostApi($url, $options, false, 'MD5');