Phan\Language\Scope::getFunctionLikeFQSEN PHP Метод

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

public getFunctionLikeFQSEN ( ) : FullyQualifiedMethodName | FullyQualifiedFunctionName
Результат Phan\Language\FQSEN\FullyQualifiedMethodName | Phan\Language\FQSEN\FullyQualifiedFunctionName Crawl the scope hierarchy to get a method FQSEN.
    public function getFunctionLikeFQSEN()
    {
        assert($this->hasParentScope(), "Cannot get method/function/closure FQSEN on scope");
        return $this->getParentScope()->getFunctionLikeFQSEN();
    }