Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Distilleries\Expendable\Exceptions; |
||
6 | class Handler extends ExceptionHandler { |
||
7 | |||
8 | protected $dontReport = [ |
||
9 | 'Symfony\Component\HttpKernel\Exception\HttpException', |
||
10 | 'Symfony\Component\HttpKernel\Exception\NotFoundHttpException' |
||
11 | ]; |
||
12 | |||
13 | /** |
||
14 | * Render an exception into an HTTP response. |
||
15 | * |
||
16 | * @param \Illuminate\Http\Request $request |
||
17 | * @param \Exception $e |
||
18 | * @return \Illuminate\Http\Response |
||
19 | */ |
||
20 | 6 | public function render($request, Exception $e) |
|
31 | } |
||
32 | } |