You are here

public function ArrayCollection::__construct in Plug 7

Initializes a new ArrayCollection.

Parameters

array $elements:

File

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

Class

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

Namespace

Doctrine\Common\Collections

Code

public function __construct(array $elements = array()) {
  $this->elements = $elements;
}