public function ArrayCollection::offsetGet

ArrayAccess implementation of offsetGet()

Parameters

mixed $offset:

Return value

mixed

See also

get()

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 173

Class

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

Namespace

Doctrine\Common\Collections

Code

public function offsetGet($offset) {
  return $this
    ->get($offset);
}