Handler::register()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
ccs 1
cts 1
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App\Exceptions;
4
5
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
6
7
class Handler extends ExceptionHandler
8
{
9
    /**
10
     * A list of the exception types that are not reported.
11
     *
12
     * @var array
13
     */
14
    protected $dontReport = [
15
        //
16
    ];
17
18
    /**
19
     * A list of the inputs that are never flashed for validation exceptions.
20
     *
21
     * @var array
22
     */
23
    protected $dontFlash = [
24
        'password',
25
        'password_confirmation',
26
    ];
27
28
    /**
29
     * Register the exception handling callbacks for the application.
30
     *
31
     * @return void
32
     */
33 117
    public function register()
34
    {
35
        //
36 117
    }
37
}
38