Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 72 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
AbkhazUppercaseCollation | |
0.00% |
0 / 72 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 72 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | /** |
3 | * This program is free software; you can redistribute it and/or modify |
4 | * it under the terms of the GNU General Public License as published by |
5 | * the Free Software Foundation; either version 2 of the License, or |
6 | * (at your option) any later version. |
7 | * |
8 | * This program is distributed in the hope that it will be useful, |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | * GNU General Public License for more details. |
12 | * |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
16 | * http://www.gnu.org/copyleft/gpl.html |
17 | * |
18 | * @since 1.31 |
19 | * |
20 | * @file |
21 | */ |
22 | |
23 | use MediaWiki\Languages\LanguageFactory; |
24 | |
25 | class AbkhazUppercaseCollation extends CustomUppercaseCollation { |
26 | |
27 | /** |
28 | * @param LanguageFactory $languageFactory |
29 | */ |
30 | public function __construct( LanguageFactory $languageFactory ) { |
31 | parent::__construct( |
32 | $languageFactory, |
33 | [ |
34 | 'А', |
35 | 'Б', |
36 | 'В', |
37 | 'Г', |
38 | 'Гь', |
39 | 'Гә', |
40 | 'Ӷ', |
41 | 'Ҕ', |
42 | 'Ҕь', |
43 | 'Ҕә', |
44 | 'Д', |
45 | 'Дә', |
46 | 'Е', |
47 | 'Ж', |
48 | 'Жь', |
49 | 'Жә', |
50 | 'З', |
51 | 'Ӡ', |
52 | 'Ӡә', |
53 | 'И', |
54 | 'К', |
55 | 'Кь', |
56 | 'Кә', |
57 | 'Қ', |
58 | 'Қь', |
59 | 'Қә', |
60 | 'Ҟ', |
61 | 'Ҟь', |
62 | 'Ҟә', |
63 | 'Л', |
64 | 'М', |
65 | 'Н', |
66 | 'О', |
67 | 'П', |
68 | 'Ԥ', |
69 | 'Ҧ', |
70 | 'Р', |
71 | 'С', |
72 | 'Т', |
73 | 'Тә', |
74 | 'Ҭ', |
75 | 'Ҭә', |
76 | 'У', |
77 | 'Ф', |
78 | 'Х', |
79 | 'Хь', |
80 | 'Хә', |
81 | 'Ҳ', |
82 | 'Ҳә', |
83 | 'Ц', |
84 | 'Цә', |
85 | 'Ҵ', |
86 | 'Ҵә', |
87 | 'Ч', |
88 | 'Ҷ', |
89 | 'Ҽ', |
90 | 'Ҿ', |
91 | 'Ш', |
92 | 'Шь', |
93 | 'Шә', |
94 | 'Ы', |
95 | 'Ҩ', |
96 | 'Џ', |
97 | 'Џь', |
98 | 'ь', |
99 | 'ә', |
100 | ], |
101 | 'ab' |
102 | ); |
103 | } |
104 | } |