public function ArrayDeprecationWrapper::offsetSet in Entity Construction Kit (ECK) 8
File
- src/
ArrayDeprecationWrapper.php, line 60
Class
- ArrayDeprecationWrapper
- Class ArrayDeprecationWrapper
Namespace
Drupal\eckCode
public function offsetSet($offset, $value) {
trigger_error($this->deprecationWarning, E_USER_DEPRECATED);
$this->wrappedArray[$offset] = $value;
}