Neos\Flow\Security\Authorization\Privilege\Entity\Doctrine\PropertyConditionGenerator::greaterThan PHP Method

greaterThan() public method

public greaterThan ( mixed $operandDefinition ) : PropertyConditionGenerator
$operandDefinition mixed
return PropertyConditionGenerator the current instance to allow for method chaining
    public function greaterThan($operandDefinition)
    {
        $this->operator = '>';
        $this->operandDefinition = $operandDefinition;
        $this->operand = $this->getValueForOperand($operandDefinition);
        return $this;
    }