Pinq\Expressions\BinaryOperationExpression::__construct PHP Метод

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

public __construct ( Expression $leftOperand, $operator, Expression $rightOperand )
$leftOperand Expression
$rightOperand Expression
    public function __construct(Expression $leftOperand, $operator, Expression $rightOperand)
    {
        $this->leftOperand = $leftOperand;
        $this->operator = $operator;
        $this->rightOperand = $rightOperand;
    }