data = $data; return $this; } /** * * @see \FML\Renderable::render() */ public function render(\DOMDocument $domDocument) { $xml = $domDocument->createElement($this->tagName); if ($this->data) { $xml->setAttribute('data', $this->data); } return $xml; } }