public function ArrayCollection::last

Sets the internal iterator to the last element in the collection and returns this element.

Return value

mixed

Overrides Collection::last

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 80

Class

ArrayCollection
An ArrayCollection is a Collection implementation that wraps a regular PHP array.

Namespace

Doctrine\Common\Collections

Code

public function last() {
  return end($this->_elements);
}