DIR: /home/lapieza/vendor/illuminate/contracts/Foundation/ |
Current File : //home/lapieza/vendor/illuminate/contracts/Foundation/ExceptionRenderer.php |
<?php namespace Illuminate\Contracts\Foundation; interface ExceptionRenderer { /** * Renders the given exception as HTML. * * @param \Throwable $throwable * @return string */ public function render($throwable); } |