PHPMD\Node\MethodNode::getFullQualifiedName PHP 메소드

getFullQualifiedName() 공개 메소드

Returns the full qualified name of a class, an interface, a method or a function.
public getFullQualifiedName ( ) : string
리턴 string
    public function getFullQualifiedName()
    {
        return sprintf('%s\\%s::%s()', $this->getNamespaceName(), $this->getParentName(), $this->getName());
    }