text = $text; return $this; } /** * * @see \FML\Types\Renderable::render() */ public function render(\DOMDocument $domDocument) { $xml = $domDocument->createElement($this->tagName); $scriptComment = $domDocument->createComment($this->text); $xml->appendChild($scriptComment); return $xml; } }