| Conditions | 2 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.2559 |
| Changes | 0 | ||
| 1 | <?php namespace Rocket\Translation\Support\Laravel5; |
||
| 19 | 216 | protected function registerLanguageChangeRoute() |
|
| 20 | 216 | { |
|
| 21 | $this->app['router']->get( |
||
| 22 | 'lang/{lang}', |
||
| 23 | function ($lang) { |
||
| 24 | try { |
||
| 25 | $this->app['i18n']->setLanguageForSession($lang); |
||
| 26 | } catch (\RuntimeException $e) { |
||
| 27 | $this->app['session']->flash('error', t('Cette langue n\'est pas disponible')); |
||
| 28 | 216 | } |
|
| 29 | 216 | ||
| 30 | return $this->app['redirect']->back(); |
||
| 31 | 216 | } |
|
| 32 | ); |
||
| 33 | 216 | } |
|
| 34 | 216 | ||
| 67 |