| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 28 | class LanguageKazhak 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 | * @return LocaleInterface  | 
            ||
| 44 | */  | 
            ||
| 45 | public function locale(): LocaleInterface  | 
            ||
| 48 | }  | 
            ||
| 49 | }  | 
            ||
| 50 |