You are here

protected function MarkdownAllowedHtml::protectedProperties in Markdown 8.2

Indicates properties that should never be overridden after instantiation.

Return value

string[] The protected properties.

Overrides AnnotationObject::protectedProperties

File

src/Annotation/MarkdownAllowedHtml.php, line 42

Class

MarkdownAllowedHtml
Markdown Allowed HTML Annotation.

Namespace

Drupal\markdown\Annotation

Code

protected function protectedProperties() {
  return array_merge(parent::protectedProperties(), [
    'type',
  ]);
}