Update Fans.php

This commit is contained in:
Anyon 2019-12-31 11:13:57 +08:00
parent bcef4a9cee
commit ed1cb2d2f4

View File

@ -85,7 +85,7 @@ class Fans extends Command
} }
$this->output->comment('微信粉丝数据同步完成!'); $this->output->comment('微信粉丝数据同步完成!');
$this->output->newLine(); $this->output->newLine();
return ''; return "同步{$done}个用户数据";
} }
/** /**
@ -112,9 +112,9 @@ class Fans extends Command
$this->output->comment('微信黑名单数据同步完成!'); $this->output->comment('微信黑名单数据同步完成!');
$this->output->newLine(); $this->output->newLine();
if (empty($result['total'])) { if (empty($result['total'])) {
return '同步微信用户0人'; return ',其中黑名单0人';
} else { } else {
return "同步微信用户{$result['total']}"; return ",其中黑名单{$result['total']}";
} }
} }