You are here

public function AttributeString::__toString in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Template/AttributeString.php \Drupal\Core\Template\AttributeString::__toString()
  2. 9 core/lib/Drupal/Core/Template/AttributeString.php \Drupal\Core\Template\AttributeString::__toString()

Implements the magic __toString() method.

File

core/lib/Drupal/Core/Template/AttributeString.php, line 27

Class

AttributeString
A class that represents most standard HTML attributes.

Namespace

Drupal\Core\Template

Code

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