Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 44
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
InariSaamiUppercaseCollation
0.00% covered (danger)
0.00%
0 / 44
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 / 44
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.44
19 *
20 * @file
21 */
22
23use MediaWiki\Languages\LanguageFactory;
24
25class InariSaamiUppercaseCollation extends CustomUppercaseCollation {
26
27    public function __construct( LanguageFactory $languageFactory ) {
28        parent::__construct(
29            $languageFactory,
30            [
31                'A',
32                'Á',
33                'Ä',
34                'Â',
35                'Å',
36                'Æ',
37                'B',
38                'C',
39                'Č',
40                'D',
41                'Đ',
42                'E',
43                'F',
44                'G',
45                'H',
46                'I',
47                'J',
48                'K',
49                'L',
50                'M',
51                'N',
52                'Ŋ',
53                'O',
54                'Ö',
55                'Ø',
56                'P',
57                'Q',
58                'R',
59                'S',
60                'Š',
61                'T',
62                'U',
63                'V',
64                'W',
65                'X',
66                'Y',
67                'Z',
68                'Ž',
69            ],
70            'smn'
71        );
72    }
73}