public function ArrayCollection::__construct

Initializes a new ArrayCollection.

Parameters

array $elements:

File

drupal/core/vendor/doctrine/common/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;
}