| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Rocket\Translation\Support\Laravel5; |
||
| 8 | 216 | protected function registerManager() |
|
| 9 | { |
||
| 10 | 216 | $this->app->alias('i18n', \Rocket\Translation\I18NInterface::class); |
|
| 11 | $this->app->singleton( |
||
| 12 | 177 | 'i18n', |
|
| 13 | function (Application $app) { |
||
| 14 | 216 | return $app->make(\Rocket\Translation\I18N::class); |
|
| 15 | 216 | } |
|
| 16 | ); |
||
| 17 | 216 | } |
|
| 18 | |||
| 67 |