Phan\Language\Scope::getClassFQSEN PHP Method

getClassFQSEN() public method

public getClassFQSEN ( ) : FullyQualifiedClassName
return Phan\Language\FQSEN\FullyQualifiedClassName Crawl the scope hierarchy to get a class FQSEN.
    public function getClassFQSEN() : FullyQualifiedClassName
    {
        assert($this->hasParentScope(), "Cannot get class FQSEN on scope");
        return $this->getParentScope()->getClassFQSEN();
    }