Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Render/FormattableMarkup.php \Drupal\Component\Render\FormattableMarkup::__toString()
  2. 9 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

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);
}