Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
80.00% covered (warning)
80.00%
4 / 5
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
UppercaseCollation
80.00% covered (warning)
80.00%
4 / 5
66.67% covered (warning)
66.67%
2 / 3
4.13
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getSortKey
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getFirstLetter
66.67% covered (warning)
66.67%
2 / 3
0.00% covered (danger)
0.00%
0 / 1
2.15
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.16.3
19 *
20 * @file
21 */
22
23use MediaWiki\Language\Language;
24use MediaWiki\Languages\LanguageFactory;
25
26class UppercaseCollation extends Collation {
27
28    /** @var Language Language object for English, so we can use the generic
29     * UTF-8 uppercase function there
30     */
31    private $lang;
32
33    public function __construct( LanguageFactory $languageFactory ) {
34        $this->lang = $languageFactory->getLanguage( 'en' );
35    }
36
37    public function getSortKey( $string ) {
38        return $this->lang->uc( $string );
39    }
40
41    public function getFirstLetter( $string ) {
42        if ( $string[0] == "\0" ) {
43            $string = substr( $string, 1 );
44        }
45        return $this->lang->ucfirst( $this->lang->firstChar( $string ) );
46    }
47
48}