// +---------------------------------------------------------------------- declare (strict_types = 1); namespace addon\wxchat\controller\api; use ywxapp\controller\FrontendBase; /** * Recommend 类 * * @author ywxapp */ class Recommend extends FrontendBase { /** * Summary of noNeedLogin * @var array */ protected $noNeedLogin = ['*']; /** * Summary of noNeedVerify * @var array */ protected $noNeedVerify = ['*']; /** * 控制器初始化 initialize * @return void */ protected function initialize() {} /** * 显示资源列表 * * @return \think\Response */ public function index() { if ($this->auth->isLogin) { $this->success(); }else{ $this->error("用户未登录!"); } } }