Neos\ContentRepository\Domain\Service\ImportExport\NodeImportService::getCurrentPath PHP Method

getCurrentPath() protected method

Provides the path for a NodeData according to the current stacks
protected getCurrentPath ( ) : string
return string
    protected function getCurrentPath()
    {
        $path = implode('/', $this->nodeNameStack);
        return $path === '' ? '/' : $path;
    }