Neos\ContentRepository\Domain\Model\Node::getDepth PHP Method

getDepth() public method

Counting starts with 0 for "/", 1 for "/foo", 2 for "/foo/bar" etc.
public getDepth ( ) : integer
return integer
    public function getDepth()
    {
        return $this->nodeData->getDepth();
    }
Node