You are here

public function AnnotationObject::__sleep in Markdown 8.2

File

src/Annotation/AnnotationObject.php, line 161

Class

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

Namespace

Drupal\markdown\Annotation

Code

public function __sleep() {
  unset($this->_triggeredDeprecations);
  return $this
    ->__sleepTrait();
}