| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function handle($request, Closure $next, Lang $lang, App $app) |
||
| 36 | { |
||
| 37 | // 自动侦测当前语言 |
||
| 38 | $langset = $lang->detect(); |
||
| 39 | |||
| 40 | if ($lang->defaultLangSet() != $langset) { |
||
| 41 | // 加载系统语言包 |
||
| 42 | $lang->load([ |
||
| 43 | $app->getThinkPath() . 'lang' . DIRECTORY_SEPARATOR . $langset . '.php', |
||
| 44 | ]); |
||
| 45 | |||
| 46 | $app->LoadLangPack($langset); |
||
| 47 | } |
||
| 48 | |||
| 49 | $lang->saveToCookie($app->cookie); |
||
| 50 | |||
| 51 | return $next($request); |
||
| 52 | } |
||
| 54 |