You are here

protected function AnnotationObject::protectedProperties in Markdown 8.2

Indicates properties that should never be overridden after instantiation.

Return value

string[] The protected properties.

2 calls to AnnotationObject::protectedProperties()
AnnotationObject::merge in src/Annotation/AnnotationObject.php
Merges values with this plugin.
MarkdownAllowedHtml::protectedProperties in src/Annotation/MarkdownAllowedHtml.php
Indicates properties that should never be overridden after instantiation.
1 method overrides AnnotationObject::protectedProperties()
MarkdownAllowedHtml::protectedProperties in src/Annotation/MarkdownAllowedHtml.php
Indicates properties that should never be overridden after instantiation.

File

src/Annotation/AnnotationObject.php, line 361

Class

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

Namespace

Drupal\markdown\Annotation

Code

protected function protectedProperties() {
  return [
    'id',
    'class',
    'provider',
  ];
}