public function Collection::offsetGet

ArrayAccess implementation of offsetGet()

Parameters

string $offset Array key:

Return value

null|mixed

File

drupal/core/vendor/guzzle/common/Guzzle/Common/Collection.php, line 280

Class

Collection
Key value pair collection object

Namespace

Guzzle\Common

Code

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