Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
LanguageMl
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 normalize
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
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 * @file
19 */
20
21use MediaWiki\Languages\Data\NormalizeMl;
22
23/**
24 * Malayalam (മലയാളം)
25 *
26 * @ingroup Languages
27 */
28class LanguageMl extends Language {
29    /**
30     * Convert Unicode 5.0 style Malayalam input to Unicode 5.1, similar to T11413
31     * which is the same issue for Arabic.
32     *
33     * Also fixes miscellaneous problems due to mishandling of ZWJ (e.g. T13162).
34     *
35     * Originally introduced after "[wikitech-l] Unicode equivalence" (Dec 2009)
36     * <https://lists.wikimedia.org/hyperkitty/list/wikitech-l@lists.wikimedia.org/thread/LMMZ3M4757Z5DH42MT75K6GWLAKUBLRD>
37     *
38     * Optimization: This is language-specific to reduce negative performance impact.
39     *
40     * @param string $s
41     * @return string
42     */
43    public function normalize( $s ) {
44        $s = parent::normalize( $s );
45        return $this->transformUsingPairFile( NormalizeMl::class, $s );
46    }
47}