TrackManiaControl/application/core/FML/Elements/Format.php

25 lines
416 B
PHP
Raw Normal View History

<?php
namespace FML\Elements;
/**
* Class representing a format
*
* @author steeffeen
*/
class Format implements BgColorable, Renderable, Styleable, TextFormatable {
/**
* Protected properties
*/
protected $tagName = 'format';
/**
*
* @see \FML\Renderable::render()
*/
public function render(\DOMDocument $domDocument) {
$xml = $domDocument->createElement($this->tagName);
return $xml;
}
}