public function AbstractLazyCollection::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/ AbstractLazyCollection.php, line 137 
Class
- AbstractLazyCollection
- Lazy collection that is backed by a concrete collection
Namespace
Doctrine\Common\CollectionsCode
public function getValues() {
  $this
    ->initialize();
  return $this->collection
    ->getValues();
}