You are here

public function ArrayDeprecationWrapper::offsetSet in Entity Construction Kit (ECK) 8

File

src/ArrayDeprecationWrapper.php, line 60

Class

ArrayDeprecationWrapper
Class ArrayDeprecationWrapper

Namespace

Drupal\eck

Code

public function offsetSet($offset, $value) {
  trigger_error($this->deprecationWarning, E_USER_DEPRECATED);
  $this->wrappedArray[$offset] = $value;
}