diff --git a/library/Businessprocess/Node.php b/library/Businessprocess/Node.php index 067d433..c7dc07d 100644 --- a/library/Businessprocess/Node.php +++ b/library/Businessprocess/Node.php @@ -421,6 +421,8 @@ abstract class Node if (! $this instanceof ImportedNode && $this->getBpConfig()->hasRootNode($this->getName())) { $paths[] = [$differentConfig ? $this->getIdentifier() : $this->getName()]; + } elseif (! $this->hasParents()) { + $paths[] = ['__unbound__', $differentConfig ? $this->getIdentifier() : $this->getName()]; } return $paths;