| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function handle($request, Closure $next) |
||
| 10 | { |
||
| 11 | if (!config('stethoscope.monitoring_panel_status')) |
||
| 12 | abort(404); |
||
| 13 | |||
| 14 | if (config('stethoscope.monitoring_panel_key') && request()->get('key') != config('stethoscope.monitoring_panel_key')) |
||
| 15 | abort(404); |
||
| 16 | |||
| 17 | return $next($request); |
||
| 18 | } |
||
| 20 |