/**
  * @return void
  */
 public function rewind()
 {
     if ($this->items === null) {
         $this->items = new ArrayIterator($this->slideshow->getItems()->toArray());
     }
     return $this->items->rewind();
 }
Example #2
0
 /**
  * Get package items
  *
  * @return array
  */
 public function getPackageItems()
 {
     return $this->package->getItems();
 }