/**
  * Iteration. Forwards the internal pointer to the next item on the list.
  */
 public function next()
 {
     $this->current = $this->current->getNext();
 }