blob: 25c181ecc46ef8a7d83a5eef525a0249a53789f6 [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Support;
interface Renderable
{
/**
* Get the evaluated contents of the object.
*
* @return string
*/
public function render();
}