You are here

public function ArrayObject::__get in Express 8

Returns the value at the specified key by reference.

Parameters

mixed $key: A key.

Return value

mixed The stored value.

1 method overrides ArrayObject::__get()
Element::__get in themes/contrib/bootstrap/src/Utility/Element.php
Magic get method.

File

themes/contrib/bootstrap/src/Utility/ArrayObject.php, line 84
Contains \Drupal\bootstrap\Utility\ArrayObject.

Class

ArrayObject
Custom ArrayObject implementation.

Namespace

Drupal\bootstrap\Utility

Code

public function &__get($key) {
  $ret =& $this
    ->offsetGet($key);
  return $ret;
}