Phan\Language\Element\Method::getFQSEN PHP Method

getFQSEN() public method

public getFQSEN ( ) : FullyQualifiedMethodName
return Phan\Language\FQSEN\FullyQualifiedMethodName
    public function getFQSEN() : FullyQualifiedMethodName
    {
        return $this->fqsen;
    }

Usage Example

Beispiel #1
0
 /**
  * @param CodeBase $code_base
  * The code base in which the method exists
  *
  * @param Method $method
  * A method being analyzed
  *
  * @return void
  */
 public function analyzeMethod(CodeBase $code_base, Method $method)
 {
     // Ignore methods inherited by subclasses
     if ($method->getFQSEN() !== $method->getDefiningFQSEN()) {
         return;
     }
     $this->analyzeTypedElement($code_base, $method);
 }
All Usage Examples Of Phan\Language\Element\Method::getFQSEN