PhpParser\Node\Name::__toString PHP Méthode

__toString() public méthode

Returns a string representation of the name by imploding the namespace parts with the namespace separator.
public __toString ( ) : string
Résultat string String representation
    public function __toString()
    {
        return implode('\\', $this->parts);
    }