One Hat Cyber Team
Your IP:
216.73.216.102
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
fluxyjvi
/
www
/
assets
/
images
/
View File Name :
Token.php.tar
home/fluxyjvi/public_html/project/vendor/tymon/jwt-auth/src/Token.php 0000644 00000001577 15107346236 0022133 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * 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(); } }