/home/techb158/ileadtechnology.com/SSM/vendor/tymon/jwt-auth/src
NameSizeModeActions
Claims/-0755rm
Console/-0755rm
Contracts/-0755rm
Exceptions/-0755rm
Facades/-0755rm
Http/-0755rm
Providers/-0755rm
Support/-0755rm
Validators/-0755rm
Blacklist.php53420644editdlrm
Factory.php54530644editdlrm
JWT.php89930644editdlrm
JWTAuth.php19570644editdlrm
JWTGuard.php97940644editdlrm
Manager.php58320644editdlrm
Payload.php63230644editdlrm
Token.php9020644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/tymon/jwt-auth/src/Token.php (902B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth; use Tymon\JWTAuth\Validators\TokenValidator; class Token { /** * @var string */ private $value; /** * Create a new JSON Web Token. * * @param string $value * * @return void */ public function __construct($value) { $this->value = (string) (new TokenValidator)->check($value); } /** * Get the token. * * @return string */ public function get() { return $this->value; } /** * Get the token when casting to string. * * @return string */ public function __toString() { return $this->get(); } }