FansAll.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/framework
  12. // +----------------------------------------------------------------------
  13. namespace app\wechat\command\fans;
  14. use app\wechat\command\Fans;
  15. /**
  16. * 同步全部粉丝指令
  17. * Class FansBlack
  18. * @package app\wechat\command\fans
  19. */
  20. class FansAll extends Fans
  21. {
  22. /**
  23. * 配置入口
  24. */
  25. protected function configure()
  26. {
  27. $this->module = ['list', 'black', 'tags'];
  28. $this->setName('xfans:all')->setDescription('synchronize all of fans');
  29. }
  30. }