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

18 lines
379 B
PHP

<?php
namespace dipl\Html;
/**
* Interface for HTML elements or primitives that promise to render valid UTF-8 encoded HTML5 with special characters
* converted to HTML entities
*/
interface ValidHtml
{
/**
* Render to HTML
*
* @return string UTF-8 encoded HTML5 with special characters converted to HTML entities
*/
public function render();
}