15 lines
250 B
PHP
Raw Normal View History

2023-11-30 22:53:01 +08:00
<?php
namespace Illuminate\Contracts\Foundation;
interface ExceptionRenderer
{
/**
* Renders the given exception as HTML.
*
* @param \Throwable $throwable
* @return string
*/
public function render($throwable);
}