blob: 24f4e4be096185e1e2eb3de77ca1f1dc4b19aadc [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Foundation;
interface ExceptionRenderer
{
/**
* Renders the given exception as HTML.
*
* @param \Throwable $throwable
* @return string
*/
public function render($throwable);
}