PhpParser\NodeAbstract::getType PHP Метод

getType() публичный Метод

Gets the type of the node.
public getType ( ) : string
Результат string Type of the node
    public function getType()
    {
        return strtr(substr(rtrim(get_class($this), '_'), 15), '\\', '_');
    }