public function ArrayCollection::current in Plug 7
Gets the element of the collection at the current iterator position.
Return value
mixed
Overrides Collection::current
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 96
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function current() {
return current($this->elements);
}