You are here

public function ArrayCollection::getIterator in Plug 7

Required by interface IteratorAggregate.

File

lib/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\Collections

Code

public function getIterator() {
  return new ArrayIterator($this->elements);
}