Lcobucci\JWT\Claim\Factory::createGreaterOrEqualsTo PHP Method

createGreaterOrEqualsTo() private method

Creates a claim that can be compared (greator or equals)
private createGreaterOrEqualsTo ( string $name, mixed $value ) : Lcobucci\JWT\Claim\GreaterOrEqualsTo
$name string
$value mixed
return Lcobucci\JWT\Claim\GreaterOrEqualsTo
    private function createGreaterOrEqualsTo(string $name, $value) : GreaterOrEqualsTo
    {
        return new GreaterOrEqualsTo($name, $value);
    }