You are here

public function AnnotationObject::offsetExists in Markdown 8.2

1 call to AnnotationObject::offsetExists()
AnnotationObject::__isset in src/Annotation/AnnotationObject.php

File

src/Annotation/AnnotationObject.php, line 306

Class

AnnotationObject
Base annotation class for retrieving the annotation as an object.

Namespace

Drupal\markdown\Annotation

Code

public function offsetExists($offset) {
  if (array_key_exists($offset, $this->_deprecatedProperties)) {
    return isset($this->_deprecated[$offset]);
  }
  return isset($this->{$offset});
}