TrackManiaControl/application/core/Libs/FML/ManiaCode/Element.php
2014-05-01 17:35:23 +02:00

15 lines
273 B
PHP

<?php
namespace FML\ManiaCode;
interface Element {
/**
* Render the ManiaCode Element
*
* @param \DOMDocument $domDocument The DomDocument for which the Element should be rendered
* @return \DOMElement
*/
public function render(\DOMDocument $domDocument);
}