HighSpeaker/vendor/illuminate/contracts/Foundation/ExceptionRenderer.php
2022-12-24 22:10:40 +08:00

15 lines
250 B
PHP

<?php
namespace Illuminate\Contracts\Foundation;
interface ExceptionRenderer
{
/**
* Renders the given exception as HTML.
*
* @param \Throwable $throwable
* @return string
*/
public function render($throwable);
}