jwt-auth icon indicating copy to clipboard operation
jwt-auth copied to clipboard

文档里的JWTAuth::token()->get()应该是$tokenStr = JWTAuth::getToken()吧,是不是写错了

Open 15257741312 opened this issue 2 years ago • 1 comments

源码有getToken方法,没有token()方法 `public function getToken() { if ($this->token === null) { try { $this->parseToken(); } catch (JWTException $e) { $this->token = null; } }

    return $this->token;
}`

15257741312 avatar Aug 12 '22 07:08 15257741312

没错,你是遇到什么问题了?

QThans avatar Aug 18 '22 04:08 QThans