function DeprecatedArray::offsetUnset
Attributes
#[\ReturnTypeWillChange]
File
- 
              core/
lib/ Drupal/ Component/ Utility/ DeprecatedArray.php, line 60  
Class
- DeprecatedArray
 - An array that triggers a deprecation warning when accessed.
 
Namespace
Drupal\Component\UtilityCode
public function offsetUnset($offset) {
  @trigger_error($this->message, E_USER_DEPRECATED);
  parent::offsetUnset($offset);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.