public function ArrayCollection::getIterator 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::getIterator()
Required by interface IteratorAggregate.
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 277
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function getIterator() {
return new ArrayIterator($this->elements);
}