zlibproxy/vendor/illuminate/contracts/Foundation/ExceptionRenderer.php

15 lines
250 B
PHP
Raw Normal View History

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