Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
28 | class LanguageLithuanian 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 ['A', 'Ą', 'B', 'C', 'Č', 'D', 'E', 'Ę', 'Ė', 'F', 'G', 'H', 'I', 'Y', 'Į', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'Š', 'T', 'U', 'Ų', 'Ū', 'V', 'Z', 'Ž']; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * One of: 'DMY', 'MDY', 'YMD'. |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | public function dateOrder(): string |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return LocaleInterface |
||
54 | */ |
||
55 | public function locale(): LocaleInterface |
||
58 | } |
||
59 | } |
||
60 |