public function ArrayCollection::next in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php \Doctrine\Common\Collections\ArrayCollection::next()
Moves the internal iterator position to the next element and returns this element.
Return value
mixed
Overrides Collection::next
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 88
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function next() {
return next($this->elements);
}