FansList.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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 FansList
  18. * @package app\wechat\command\fans
  19. */
  20. class FansList extends Fans
  21. {
  22. /**
  23. * 配置入口
  24. */
  25. protected function configure()
  26. {
  27. $this->module = ['list'];
  28. $this->setName('xfans:list')->setDescription('synchronize list of fans');
  29. }
  30. }