function()
{
$this->payload = [
"iss" => defined('BBN_SERVER_NAME') ? BBN_SERVER_NAME : gethostname(),
"iat" => time(),
"exp" => time() + $this->ttl,
"sub" => $this->sub,
"aud" => $this->aud,
"data" => []
];
return $this;
}