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

greaterOrEqual() public method

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