TrackManiaControl/application/core/FML/ManiaCode/Element.php
Steffen Schröder 345368df39 Huge FML Update
2014-05-01 17:34:56 +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);
}