*/ interface AttributeValueInterface { /** * Returns the string representation of the attribute value. The returned value * will automatically be escaped for the HTML attribute context. * * @return string|null the attribute value as a string, or null to omit the attribute */ public function getValue(): ?string; }