Pinq\Expressions\UnaryOperationExpression::getOperand PHP Метод

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

public getOperand ( ) : Expression
Результат Expression
    public function getOperand()
    {
        return $this->operand;
    }

Usage Example

Пример #1
0
 public function visitUnaryOperation(O\UnaryOperationExpression $expression)
 {
     $this->walk($expression->getOperand());
     $this->addTypeOperation($expression, $this->analysis[$expression->getOperand()]->getUnaryOperation($expression));
 }
All Usage Examples Of Pinq\Expressions\UnaryOperationExpression::getOperand