Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
28 | class LanguageTatar extends AbstractModule implements ModuleLanguageInterface |
||
29 | { |
||
30 | use ModuleLanguageTrait; |
||
31 | |||
32 | /** |
||
33 | * Phone-book ordering of letters. |
||
34 | * |
||
35 | * @return array<int,string> |
||
36 | */ |
||
37 | public function alphabet(): array |
||
38 | { |
||
39 | return ['А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ё', 'Ж', 'З', 'И', 'Й', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ы', 'Ь', 'Э', 'Ю', 'Я']; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Should this module be enabled when it is first installed? |
||
44 | * |
||
45 | * @return bool |
||
46 | */ |
||
47 | public function isEnabledByDefault(): bool |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return LocaleInterface |
||
54 | */ |
||
55 | public function locale(): LocaleInterface |
||
60 |