Exemple #1
0
 /**
  * Add a child
  *
  * @param  Node      $child
  * @return Directory
  **/
 public function addChild(Node $child)
 {
     $child->setParent($this);
     $this->children[] = $child;
     return $this;
 }