| 12345678910111213141516171819202122232425262728 |
- <?php namespace App\Facades\Servers\Encrypts;
- use Illuminate\Support\Facades\Facade;
- /**
- * 用户权限令牌(JWT)
- *
- * @method static string encode(array $data) 加密数据
- * @method static array decode(string $access_token) 解密数据
- *
- * @author liuxaingxin
- * @see \App\Servers\Encrypts\AccessToken
- *
- */
- class AccessToken extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Encrypts\AccessToken';
- }
- }
- ?>
|