diff --git a/application/service/queue/WechatQueue.php b/application/service/queue/WechatQueue.php index 0ee62a0ad..04ae5d3da 100644 --- a/application/service/queue/WechatQueue.php +++ b/application/service/queue/WechatQueue.php @@ -50,7 +50,7 @@ class WechatQueue extends Queue * @throws \think\Exception * @throws \think\exception\PDOException */ - public function execute(Input $input, Output $output, array $data) + public function execute(Input $input, Output $output, array $data = []) { $this->appid = $data['appid']; $wechat = WechatService::WeChatUser($this->appid); diff --git a/application/wechat/queue/WechatQueue.php b/application/wechat/queue/WechatQueue.php index eb894cc55..947d61283 100644 --- a/application/wechat/queue/WechatQueue.php +++ b/application/wechat/queue/WechatQueue.php @@ -45,7 +45,7 @@ class WechatQueue extends Queue * @throws \think\Exception * @throws \think\exception\PDOException */ - public function execute(Input $input, Output $output, array $data) + public function execute(Input $input, Output $output, array $data = []) { $appid = WechatService::getAppid(); $wechat = WechatService::WeChatUser();