Neos\Flow\Persistence\Generic\Qom\Comparison::__construct PHP Метод

__construct() публичный Метод

Constructs this Comparison instance
public __construct ( DynamicOperand $operand1, integer $operator, mixed $operand2 = null )
$operand1 DynamicOperand
$operator integer one of \Neos\Flow\Persistence\QueryInterface.OPERATOR_*
$operand2 mixed
    public function __construct(DynamicOperand $operand1, $operator, $operand2 = null)
    {
        $this->operand1 = $operand1;
        $this->operator = $operator;
        $this->operand2 = $operand2;
    }