| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 6 | public function handle(Request $request, Closure $next) |
|
| 21 | { |
||
| 22 | 6 | $countries = config()->get('geo-routes.global.countries'); |
|
| 23 | 6 | $strategy = config()->get('geo-routes.global.strategy'); |
|
| 24 | |||
| 25 | 6 | if (!$this->shouldHaveAccess($request, $countries, $strategy)) { |
|
| 26 | 3 | abort(401); |
|
| 27 | } |
||
| 28 | |||
| 29 | 3 | return $next($request); |
|
| 30 | } |
||
| 32 |