| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | public function provideI18nEntities() |
||
| 8 | { |
||
| 9 | return [ |
||
| 10 | 'i18nProviderClass.TITLE' => 'My Provider Class', |
||
| 11 | 'i18nProviderClass.PLURALS' => [ |
||
| 12 | 'comment' => 'Plural forms for the test class', |
||
| 13 | 'one' => 'A class', |
||
| 14 | 'other' => '{count} classes', |
||
| 15 | ], |
||
| 16 | 'i18nProviderClass.OTHER_MODULE' => [ |
||
| 17 | 'comment' => 'Test string in another module', |
||
| 18 | 'default' => 'i18ntestmodule string defined in i18nothermodule', |
||
| 19 | 'module' => 'i18ntestmodule' |
||
| 20 | ], |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 | } |
||
| 24 |