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());
    }