Apache 2.0 License // +---------------------------------------------------------------------- namespace app; use app\common\library\Auth; /** * Api全局控制器基类 * Class ApiController * @package app * @author meystack < */ class ApiController extends BaseController { /** * 初始化方法 */ public function __construct() { parent::__construct(); $this->auth = Auth::instance(); } }