blob: 24f4e4be096185e1e2eb3de77ca1f1dc4b19aadc [file] [log] [blame]
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +01001<?php
2
3namespace Illuminate\Contracts\Foundation;
4
5interface ExceptionRenderer
6{
7 /**
8 * Renders the given exception as HTML.
9 *
10 * @param \Throwable $throwable
11 * @return string
12 */
13 public function render($throwable);
14}