From eb04fc4dde8045958536caeb395dc5acc34c5616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 10 Sep 2021 10:17:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BE=AE=E4=BF=A1=E4=BB=A3?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/controller/Config.php | 1 - app/wechat/controller/Fans.php | 4 ++-- app/wechat/controller/Keys.php | 1 - app/wechat/controller/api/Login.php | 1 - app/wechat/controller/api/Push.php | 3 +-- 5 files changed, 3 insertions(+), 7 deletions(-) diff --git a/app/wechat/controller/Config.php b/app/wechat/controller/Config.php index f3a372b1d..b0be9e3a4 100644 --- a/app/wechat/controller/Config.php +++ b/app/wechat/controller/Config.php @@ -154,5 +154,4 @@ class Config extends Controller $this->error('抱歉,访问方式错误!'); } } - } diff --git a/app/wechat/controller/Fans.php b/app/wechat/controller/Fans.php index bad1d0633..420639e2e 100644 --- a/app/wechat/controller/Fans.php +++ b/app/wechat/controller/Fans.php @@ -78,11 +78,11 @@ class Fans extends Controller public function black() { $data = $this->_vali([ - 'openid.require' => '操作用户不能为空!', 'black.require' => '操作类型不能为空!', + 'openid.require' => '操作用户不能为空!', ]); try { - foreach (array_chunk(explode(',', $data['openid']), 20) as $openids) { + foreach (array_chunk(str2arr($data['openid']), 20) as $openids) { if ($data['black']) { WechatService::WeChatUser()->batchBlackList($openids); $this->app->db->name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => 1]); diff --git a/app/wechat/controller/Keys.php b/app/wechat/controller/Keys.php index 251c9be4e..52d82c82e 100644 --- a/app/wechat/controller/Keys.php +++ b/app/wechat/controller/Keys.php @@ -194,5 +194,4 @@ class Keys extends Controller $this->error('关键字保存失败, 请稍候再试!'); } } - } diff --git a/app/wechat/controller/api/Login.php b/app/wechat/controller/api/Login.php index 5e70fcc55..49757be30 100644 --- a/app/wechat/controller/api/Login.php +++ b/app/wechat/controller/api/Login.php @@ -38,7 +38,6 @@ class Login extends Controller */ protected $prefix = 'wxlogin'; - /** * 扫描显示二维码 * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException diff --git a/app/wechat/controller/api/Push.php b/app/wechat/controller/api/Push.php index 47b862f0f..54f7b9c9b 100644 --- a/app/wechat/controller/api/Push.php +++ b/app/wechat/controller/api/Push.php @@ -47,7 +47,6 @@ class Push extends Controller */ protected $encrypt; - /** * 请求微信 OPENID * @var string @@ -91,7 +90,7 @@ class Push extends Controller * 消息推送处理接口 * @return string */ - public function index() + public function index(): string { try { if (WechatService::instance()->getType() === 'thr') {