| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1.0046 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 1 | public function newInstance() |
|
| 30 | { |
||
| 31 | 1 | return new TranslatorLocator( |
|
| 32 | 1 | new PackageLocator, |
|
| 33 | 1 | new FormatterLocator([ |
|
| 34 | 'basic' => function () { |
||
| 35 | return new \Aura\Intl\BasicFormatter; |
||
| 36 | 1 | }, |
|
| 37 | 1 | 'intl' => function () { |
|
| 38 | return new \Aura\Intl\IntlFormatter; |
||
| 39 | 1 | }, |
|
| 40 | 1 | ]), |
|
| 41 | 1 | new TranslatorFactory, |
|
| 42 | 'en_US' |
||
| 43 | 1 | ); |
|
| 44 | } |
||
| 45 | } |
||
| 46 |