Phan\Language\Scope::getFunctionLikeFQSEN PHP Method

getFunctionLikeFQSEN() public method

public getFunctionLikeFQSEN ( ) : FullyQualifiedMethodName | FullyQualifiedFunctionName
return 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();
    }