Example #1
0
 /**
  * Rewind the Iterator to the first element
  *
  * @return void Any returned value is ignored.
  */
 public function rewind()
 {
     if (!$this->result) {
         $this->loadItems();
     }
     $this->result->rewind();
 }