Total Complexity | 1 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Handler extends ExceptionHandler |
||
9 | { |
||
10 | /** |
||
11 | * {@inheritDoc} |
||
12 | * |
||
13 | * @var array<int, class-string<Throwable>> |
||
|
|||
14 | */ |
||
15 | protected $dontReport = [ |
||
16 | // |
||
17 | ]; |
||
18 | |||
19 | /** |
||
20 | * {@inheritDoc} |
||
21 | * |
||
22 | * @var array<int, string> |
||
23 | */ |
||
24 | protected $dontFlash = [ |
||
25 | 'current_password', |
||
26 | 'password', |
||
27 | 'password_confirmation', |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * {@inheritDoc} |
||
32 | */ |
||
33 | 1 | public function register() |
|
40 |