Example #1
0
 /**
  * Move forward to next element
  * @link http://php.net/manual/en/iterator.next.php
  * @return void Any returned value is ignored.
  * @since 5.0.0
  */
 public function next()
 {
     if ($this->cursor->valid()) {
         $this->cursor->next();
     }
 }