Ejemplo n.º 1
0
 public function insertChild(Library\DatabaseRowInterface $node)
 {
     //Track the parent
     $node->setParent($this);
     //Insert the row in the rowset
     $this->getChildren()->insert($node);
     return $this;
 }