From 1cda9412ef0f100406cd9692734895564c723c35 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 16 Jan 2020 17:24:38 +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 c8efbe054..0f86cc610 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -106,16 +106,16 @@ class Fans extends Command public function _black($next = '', $done = 0) { $wechat = WechatService::WeChatUser(); - $this->output->comment('--> Start to synchronize wechat blacklist data'); + $this->output->comment('--> Start to synchronize wechat blacklist users'); while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) { $done += $result['count']; foreach (array_chunk($result['data']['openid'], 100) as $chunk) { $this->app->db->name('WechatFans')->where(['is_black' => '0'])->whereIn('openid', $chunk)->update(['is_black' => '1']); } - $this->output->writeln("--> 共计同步微信黑名单{$result['total']}人"); + $this->output->writeln("--> Successfully synchronized {$result['total']} wechat blacklist users in total"); $next = $result['total'] > $done ? $result['next_openid'] : null; } - $this->output->comment('--> Wechat blacklist data synchronization completed'); + $this->output->comment('--> Wechat blacklist users synchronization completed'); $this->output->newLine(); if (empty($result['total'])) { return ',其中黑名单0人';