for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace xiaodi\JWTAuth\Facade;
use think\Facade;
/**
* @see \xiaodi\JWTAuth\Jwt
* @mixin \xiaodi\JWTAuth\Jwt
*/
class Jwt extends Facade
{
* 获取当前Facade对应类名(或者已经绑定的容器对象标识).
*
* @return string
protected static function getFacadeClass()
return 'jwt';
}