Elastica\Node::getName PHP Method

getName() public method

Get the name of the node.
public getName ( ) : string
return string Node name
    public function getName()
    {
        if (empty($this->_name)) {
            $this->_name = $this->getInfo()->getName();
        }
        return $this->_name;
    }