123456789101112131415161718 |
- <?php
- namespace app\facade;
- use think\Facade;
- /**
- * @method createToken($id) static
- * @method getToken() static
- */
- class Encryption extends Facade
- {
- protected static function getFacadeClass(): string
- {
- return 'app\common\util\Encryption';
- }
- }
|