From a46d82f52238bcf9c1641b592826a247da7c2bb2 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 17 Dec 2020 18:20:57 +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, 5 insertions(+), 9 deletions(-) diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index 5f4aedf99..7793065e6 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -93,13 +93,9 @@ class Fans extends Command $next = null; } } - if ($done > 0) { - $this->output->comment('微信用户数据获取完成'); - } else { - $this->output->comment('未获取到微信用户数据'); - } + $this->output->comment($done > 0 ? '微信用户数据获取完成' : '未获取到微信用户数据'); $this->output->newLine(); - return "共获取{$done}个用户数据"; + return "共获取 {$done} 个用户数据"; } /** @@ -130,9 +126,9 @@ class Fans extends Command } $this->output->newLine(); if (empty($result['total'])) { - return ',其中黑名单0人'; + return ',其中黑名单 0 人'; } else { - return ",其中黑名单{$result['total']}人"; + return ",其中黑名单 {$result['total']} 人"; } } @@ -166,7 +162,7 @@ class Fans extends Command $this->output->comment('未获取到微信用户标签数据'); } $this->output->newLine(); - return ",获取到{$done}个标签。"; + return ",获取到 {$done} 个标签。"; } } \ No newline at end of file