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\Languages\LanguageFactory;
24
25class UppercaseCollation extends Collation {
26
27    /** @var Language Language object for English, so we can use the generic
28     * UTF-8 uppercase function there
29     */
30    private $lang;
31
32    /**
33     * @param LanguageFactory $languageFactory
34     */
35    public function __construct( LanguageFactory $languageFactory ) {
36        $this->lang = $languageFactory->getLanguage( 'en' );
37    }
38
39    public function getSortKey( $string ) {
40        return $this->lang->uc( $string );
41    }
42
43    public function getFirstLetter( $string ) {
44        if ( $string[0] == "\0" ) {
45            $string = substr( $string, 1 );
46        }
47        return $this->lang->ucfirst( $this->lang->firstChar( $string ) );
48    }
49
50}