getName() public method

public getName ( ) : Expression
return Expression
示例#1
0
 protected final function getMethodName(O\MethodCallExpression $methodExpression)
 {
     return $this->getValue($methodExpression->getName());
 }
示例#2
0
 public function visitMethodCall(O\MethodCallExpression $expression)
 {
     $this->walk($expression->getValue());
     $this->walk($expression->getName());
     $this->walkAll($expression->getArguments());
     $this->addTypeOperation($expression, $this->analysis[$expression->getValue()]->getMethod($expression));
 }
示例#3
0
 public function getMethod(O\MethodCallExpression $expression)
 {
     if ($method = $this->getMethodByName($expression->getName(), false)) {
         return $method;
     }
     return parent::getMethod($expression);
 }