You are here

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

File

src/ArrayDeprecationWrapper.php, line 44

Class

ArrayDeprecationWrapper
Class ArrayDeprecationWrapper

Namespace

Drupal\eck

Code

public function offsetExists($offset) {
  trigger_error($this->deprecationWarning, E_USER_DEPRECATED);
  return isset($this->wrappedArray[$offset]);
}