You are here

public function ArrayCollection::add in Zircon Profile 8

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

Adds an element at the end of the collection.

Parameters

mixed $element The element to add.:

Return value

boolean Always TRUE.

Overrides Collection::add

1 call to ArrayCollection::add()
ArrayCollection::offsetSet in vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php
Required by interface ArrayAccess.

File

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

Class

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

Namespace

Doctrine\Common\Collections

Code

public function add($value) {
  $this->elements[] = $value;
  return true;
}