Psecio\Jwt\Claim\Custom::__construct PHP Method

__construct() public method

Initialize the claim with the given value and type
public __construct ( string $value, string $type )
$value string Claim value
$type string Type value
    public function __construct($value, $type)
    {
        $this->setValue($value);
        $this->setType($type);
    }