Beispiel #1
0
 /**
  * Adds a child to the current node.
  *
  * @param NodeInterface $child
  */
 public function addChild(NodeInterface $child)
 {
     $this->children[$child->getName()] = $child;
 }