public function AbstractLazyCollection::next in Plug 7
Moves the internal iterator position to the next element and returns this element.
Return value
mixed
Overrides Collection::next
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php, line 200
Class
- AbstractLazyCollection
- Lazy collection that is backed by a concrete collection
Namespace
Doctrine\Common\CollectionsCode
public function next() {
$this
->initialize();
return $this->collection
->next();
}