You are here

public function HtmlEscapedText::__toString in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Render/HtmlEscapedText.php \Drupal\Component\Render\HtmlEscapedText::__toString()

Returns markup.

Return value

string The markup.

Overrides MarkupInterface::__toString

1 call to HtmlEscapedText::__toString()
HtmlEscapedText::jsonSerialize in core/lib/Drupal/Component/Render/HtmlEscapedText.php

File

core/lib/Drupal/Component/Render/HtmlEscapedText.php, line 37

Class

HtmlEscapedText
Escapes HTML syntax characters to HTML entities for display in markup.

Namespace

Drupal\Component\Render

Code

public function __toString() {
  return Html::escape($this->string);
}