| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function handle($request, Closure $next) |
||
| 27 | { |
||
| 28 | $prefix = (string) $request->segment(1); |
||
| 29 | if($this->localizer->isHideDefaultLocaleInURL() && $prefix === $this->localizer->getDefaultLocale()) { |
||
| 30 | return redirect($this->getNonLocaleURL($request, $prefix)); |
||
| 31 | } |
||
| 32 | $this->setLocale($prefix); |
||
| 33 | |||
| 34 | return $next($request); |
||
| 35 | } |
||
| 36 | |||
| 64 |