You are here

public function ArrayCollection::set 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::set()

Sets an element in the collection at the specified key/index.

Parameters

string|integer $key The key/index of the element to set.:

mixed $value The element to set.:

Return value

void

Overrides Collection::set

1 call to ArrayCollection::set()
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 249

Class

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

Namespace

Doctrine\Common\Collections

Code

public function set($key, $value) {
  $this->elements[$key] = $value;
}