| 1 | <?php |
||
| 16 | class Handler extends ExceptionHandler |
||
| 17 | { |
||
| 18 | use ConvertsExceptions; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Render an exception into an HTTP response. |
||
| 22 | * |
||
| 23 | * @param \Illuminate\Http\Request $request |
||
| 24 | * @param \Exception $exception |
||
| 25 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 26 | */ |
||
| 27 | 7 | public function render($request, Exception $exception) |
|
| 39 | } |