Moves the internal iterator position to the next element.
Return value
mixed
Overrides Collection::next
File
- drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 100
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\Collections
Code
public function next() {
return next($this->_elements);
}