File "ExceptionRenderer.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/laravel/framework/src/Illuminate/Contracts/Foundation/ExceptionRenderer.php
File size: 250 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Illuminate\Contracts\Foundation;

interface ExceptionRenderer
{
    /**
     * Renders the given exception as HTML.
     *
     * @param  \Throwable  $throwable
     * @return string
     */
    public function render($throwable);
}