Storm\Drivers\Base\Relational\Expressions\UnaryOperationExpression::GetOperator PHP Метод

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

public GetOperator ( )
    public function GetOperator()
    {
        return $this->Operator;
    }

Usage Example

Пример #1
0
 protected function AppendUnaryOperation(QueryBuilder $QueryBuilder, E\UnaryOperationExpression $Expression)
 {
     $QueryBuilder->Append($this->GetUnaryOperatorString($Expression->GetOperator()));
     $this->Append($QueryBuilder, $Expression->GetOperandExpression());
 }