From ed1cb2d2f41e3d9b6d2881e2b08886f296e794c0 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 31 Dec 2019 11:13:57 +0800 Subject: [PATCH] Update Fans.php --- app/wechat/command/Fans.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index 44359ff9a..c7f0dff23 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -85,7 +85,7 @@ class Fans extends Command } $this->output->comment('微信粉丝数据同步完成!'); $this->output->newLine(); - return ''; + return "同步{$done}个用户数据"; } /** @@ -112,9 +112,9 @@ class Fans extends Command $this->output->comment('微信黑名单数据同步完成!'); $this->output->newLine(); if (empty($result['total'])) { - return '同步微信用户0人'; + return ',其中黑名单0人'; } else { - return "同步微信用户{$result['total']}人"; + return ",其中黑名单{$result['total']}人"; } }