You are here

public function DeprecatedArray::offsetSet in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Utility/DeprecatedArray.php \Drupal\Component\Utility\DeprecatedArray::offsetSet()
  2. 10 core/lib/Drupal/Component/Utility/DeprecatedArray.php \Drupal\Component\Utility\DeprecatedArray::offsetSet()

File

core/lib/Drupal/Component/Utility/DeprecatedArray.php, line 49

Class

DeprecatedArray
An array that triggers a deprecation warning when accessed.

Namespace

Drupal\Component\Utility

Code

public function offsetSet($offset, $value) {
  @trigger_error($this->message, E_USER_DEPRECATED);
  parent::offsetSet($offset, $value);
}