/**
  * Simple wrapper function that returns the first child.
  *
  * @return Node
  */
 public function firstChild()
 {
     $this->isLoaded();
     return $this->root->firstChild();
 }