Auth.php 451 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\http\facade;
  3. use think\Facade;
  4. /**
  5. * @see \Lettered\Support\Auth
  6. * @mixin \Lettered\Support\Auth
  7. * @method void guard(string $guard = '')
  8. */
  9. class Auth extends Facade
  10. {
  11. /**
  12. *
  13. * @author 许祖兴 < zuxing.xu@lettered.cn>
  14. * @date 2020/3/16 12:54
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeClass()
  19. {
  20. return 'Lettered\\Support\\Auth';
  21. }
  22. }