You are here

public function ArrayCollection::getValues in Plug 7

Gets all values of the collection.

Return value

array The values of all elements in the collection, in the order they appear in the collection.

Overrides Collection::getValues

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php, line 233

Class

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

Namespace

Doctrine\Common\Collections

Code

public function getValues() {
  return array_values($this->elements);
}