| 123456789101112131415161718192021222324 |
- <?php
- namespace app\http\facade;
- use think\Facade;
- /**
- * @see \Lettered\Support\Auth
- * @mixin \Lettered\Support\Auth
- * @method void guard(string $guard = '')
- */
- class Auth extends Facade
- {
- /**
- *
- * @author 许祖兴 < zuxing.xu@lettered.cn>
- * @date 2020/3/16 12:54
- *
- * @return string
- */
- protected static function getFacadeClass()
- {
- return 'Lettered\\Support\\Auth';
- }
- }
|