| Conditions | 2 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.351 |
| 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 | if (!$this->app['i18n']->setCurrentLanguage($lang)) { |
||
| 25 | $this->app['session']->flash('error', t('Cette langue n\'est pas disponible')); |
||
| 26 | } |
||
| 27 | |||
| 28 | 216 | return $this->app['redirect']->back(); |
|
| 29 | 216 | } |
|
| 30 | ); |
||
| 31 | 216 | } |
|
| 32 | |||
| 65 |