PHPMD\Node\MethodNode::getFullQualifiedName PHP Method

getFullQualifiedName() public method

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