subject = $subject; } /** * Destructor */ public function __destruct() { unset($this->subject); } /** * Rewind iterator */ public function rewind() { $this->position = 0; } /** * Current \PhpOffice\PhpPresentation\Slide * * @return \PhpOffice\PhpPresentation\Slide * @throws \Exception */ public function current() { return $this->subject->getSlide($this->position); } /** * Current key * * @return int */ public function key() { return $this->position; } /** * Next value */ public function next() { ++$this->position; } /** * More \PhpOffice\PhpPresentation\Slide instances available? * * @return boolean */ public function valid() { return $this->position < $this->subject->getSlideCount(); } }