Neos\Neos\TypoScript\MenuImplementation::getStartingPoint PHP Method

getStartingPoint() public method

public getStartingPoint ( ) : Neos\ContentRepository\Domain\Model\NodeInterface
return Neos\ContentRepository\Domain\Model\NodeInterface
    public function getStartingPoint()
    {
        if ($this->startingPoint === null) {
            $this->startingPoint = $this->tsValue('startingPoint');
        }
        return $this->startingPoint;
    }