From 8f35be046c682f933c409db37ed4a620cbd7208c Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 17 Dec 2020 18:23:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=BB=E5=8A=A1=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/command/Fans.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index 7793065e6..76c521d39 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -119,11 +119,7 @@ class Fans extends Command $this->setQueueProgress("--> 共计同步微信黑名单{$result['total']}人"); $next = $result['total'] > $done ? $result['next_openid'] : null; } - if ($done > 0) { - $this->output->comment('黑名单的微信用户更新成功'); - } else { - $this->output->comment('未获取到黑名单微信用户哦'); - } + $this->output->comment($done > 0 ? '黑名单的微信用户更新成功' : '未获取到黑名单微信用户哦'); $this->output->newLine(); if (empty($result['total'])) { return ',其中黑名单 0 人'; @@ -156,13 +152,9 @@ class Fans extends Command $this->app->db->name('WechatFansTags')->where(['appid' => $appid])->delete(); $this->app->db->name('WechatFansTags')->insertAll($list['tags']); } - if ($done > 0) { - $this->output->comment('微信用户标签数据获取完成'); - } else { - $this->output->comment('未获取到微信用户标签数据'); - } + $this->output->comment($done > 0 ? '微信用户标签数据获取完成' : '未获取到微信用户标签数据'); $this->output->newLine(); - return ",获取到 {$done} 个标签。"; + return ",获取到 {$done} 个标签"; } } \ No newline at end of file