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

createContainsEqualsTo() protected method

Creates a claim that can be compared (contains equals).
protected createContainsEqualsTo ( string $name, mixed $value ) : ContainsEqualsTo
$name string
$value mixed
return ContainsEqualsTo
    protected function createContainsEqualsTo(string $name, $value) : ContainsEqualsTo
    {
        return new ContainsEqualsTo($name, $value);
    }