| Conditions | 4 |
| Paths | 4 |
| Total Lines | 11 |
| 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 | |||
| 15 | if (config('stethoscope.monitoring_panel.key') && request()->get('key') != config('stethoscope.monitoring_panel.key')) { |
||
| 16 | abort(404); |
||
| 17 | } |
||
| 18 | |||
| 19 | return $next($request); |
||
| 20 | } |
||
| 22 |