You are here

public function ArrayObject::__unset in Express 8

Unsets the value at the specified key.

Parameters

mixed $key: A key.

1 call to ArrayObject::__unset()
Element::__unset in themes/contrib/bootstrap/src/Utility/Element.php
Magic unset method.
1 method overrides ArrayObject::__unset()
Element::__unset in themes/contrib/bootstrap/src/Utility/Element.php
Magic unset method.

File

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

Class

ArrayObject
Custom ArrayObject implementation.

Namespace

Drupal\bootstrap\Utility

Code

public function __unset($key) {
  $this
    ->offsetUnset($key);
}