/**
  * (PHP 5 &gt;= 5.0.0)<br/>
  * Rewind the Iterator to the first element
  * @link http://php.net/manual/en/iterator.rewind.php
  * @return void Any returned value is ignored.
  */
 public function rewind()
 {
     $this->reloadIterator(1);
     $this->rowIterator->rewind();
     $this->rowIterator->next();
 }
Esempio n. 2
0
 /**
  * {@inheritdoc}
  */
 public function next()
 {
     if ($this->worksheet) {
         $this->worksheet->next();
     }
 }