You are here

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

Gets the element at the specified key/index.

Parameters

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

Return value

mixed

Overrides Collection::get

1 call to ArrayCollection::get()
ArrayCollection::offsetGet 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 217

Class

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

Namespace

Doctrine\Common\Collections

Code

public function get($key) {
  return isset($this->elements[$key]) ? $this->elements[$key] : null;
}