Storm\Drivers\Platforms\Base\Queries\ExpressionCompiler::GetBinaryOperatorString PHP Method

GetBinaryOperatorString() protected method

protected GetBinaryOperatorString ( $Operator )
    protected function GetBinaryOperatorString($Operator)
    {
        if (isset($this->BinaryOperators[$Operator])) {
            return ' ' . $this->BinaryOperators[$Operator] . ' ';
        } else {
            throw new \Storm\Drivers\Base\Relational\PlatformException('%s does not support the supplied binary operator: %s', get_class($this), $Operator);
        }
    }