for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tymon\JWTAuth;
use Tymon\JWTAuth\Validators\TokenValidator;
class Token
{
/**
* @var string
*/
private $value;
* Create a new JSON Web Token
*
* @param string $value
public function __construct($value)
with(new TokenValidator)->check($value);
$this->value = $value;
}
* Get the token
* @return string
public function get()
return $this->value;
* Get the token when casting to string
public function __toString()
return (string) $this->value;