You are here

public function FormattableMarkup::__toString in Drupal 9

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

Returns markup.

Return value

string The markup.

Overrides MarkupInterface::__toString

1 call to FormattableMarkup::__toString()
FormattableMarkup::jsonSerialize in core/lib/Drupal/Component/Render/FormattableMarkup.php
Returns a representation of the object for use in JSON serialization.

File

core/lib/Drupal/Component/Render/FormattableMarkup.php, line 98

Class

FormattableMarkup
Formats a string for HTML display by replacing variable placeholders.

Namespace

Drupal\Component\Render

Code

public function __toString() {
  return static::placeholderFormat($this->string, $this->arguments);
}