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