ExceptionRenderer.php 250 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Foundation;
  3. interface ExceptionRenderer
  4. {
  5. /**
  6. * Renders the given exception as HTML.
  7. *
  8. * @param \Throwable $throwable
  9. * @return string
  10. */
  11. public function render($throwable);
  12. }