You are here

public function ArrayCollection::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php \Doctrine\Common\Collections\ArrayCollection::__construct()

Initializes a new ArrayCollection.

Parameters

array $elements:

File

vendor/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;
}