Storm\Drivers\Base\Relational\Expressions\ExpressionMapper::MapBinaryOperationExpression PHP Метод

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

public MapBinaryOperationExpression ( Expression $LeftOperandExpression, $BinaryOperator, Expression $RightOperandExpression )
$LeftOperandExpression Storm\Core\Relational\Expressions\Expression
$RightOperandExpression Storm\Core\Relational\Expressions\Expression
    public function MapBinaryOperationExpression(CoreExpression $LeftOperandExpression, $BinaryOperator, CoreExpression $RightOperandExpression)
    {
        return Expression::BinaryOperation($LeftOperandExpression, $BinaryOperator, $RightOperandExpression);
    }