Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 72
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
AbkhazUppercaseCollation
0.00% covered (danger)
0.00%
0 / 72
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 72
0.00% covered (danger)
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
23use MediaWiki\Languages\LanguageFactory;
24
25class AbkhazUppercaseCollation extends CustomUppercaseCollation {
26
27    public function __construct( LanguageFactory $languageFactory ) {
28        parent::__construct(
29            $languageFactory,
30            [
31                'А',
32                'Б',
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            'ab'
99        );
100    }
101}