icingaweb2-module-director/library/vendor/ipl/Html/ValidHtml.php

22 lines
392 B
PHP
Raw Normal View History

<?php
2017-10-09 15:23:27 +02:00
namespace dipl\Html;
/**
* Interface ValidHtml
*
* Implementations of this interface MUST guarantee, that the result of the
* render() method gives valid UTF-8 encoded HTML5.
*/
interface ValidHtml
{
/**
* Renders to HTML
*
* The result of this method is a valid UTF8-encoded HTML5 string.
*
* @return string
*/
public function render();
}