Total Complexity | 8 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 93.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class LogDebugVisits |
||
12 | { |
||
13 | protected $ignore = ['_token', 'token']; |
||
14 | protected $redact = ['password', 'password_confirmation', 'oldPass', 'newPass', 'newPass_confirmation']; |
||
15 | |||
16 | /** |
||
17 | * Handle an incoming request. |
||
18 | * |
||
19 | * @param \Illuminate\Http\Request $request |
||
20 | * @param \Closure $next |
||
21 | * @return mixed |
||
22 | */ |
||
23 | 700 | public function handle($request, Closure $next) |
|
57 |