blob: 32f643a14f18f64cc669534cb095b2979a9cde5c [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Support;
interface Htmlable
{
/**
* Get content as a string of HTML.
*
* @return string
*/
public function toHtml();
}