You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthController.php 322B

1234567891011121314151617
  1. <?php
  2. namespace app\controller\api;
  3. use crmeb\basic\BaseController;
  4. /**
  5. * 基类 所有控制器继承的类
  6. * Class AuthController
  7. * @package app\controller\admin
  8. * @method success($msg = 'ok', array $data = [])
  9. * @method fail($msg = 'error', array $data = [])
  10. */
  11. class AuthController extends BaseController
  12. {
  13. }