| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class Locale |
||
| 6 | { |
||
| 7 | public function current() |
||
| 8 | { |
||
| 9 | return session('jarboe.locale', config('jarboe.locales.default')); |
||
| 10 | } |
||
| 11 | |||
| 12 | public function setLocale($locale) |
||
| 13 | { |
||
| 14 | session(['jarboe.locale' => $locale]); |
||
| 15 | app()->setLocale($locale); |
||
|
|
|||
| 16 | } |
||
| 17 | |||
| 18 | public function all() |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getCurrentTitle(): string |
||
| 29 | } |
||
| 30 | } |
||
| 31 |