MediaWiki master
LanguageMy.php
Go to the documentation of this file.
1<?php
8namespace MediaWiki\Languages;
9
11
17class LanguageMy extends Language {
18
23 public function formatNum( $number ) {
24 /* NO-op. Cannot use
25 * $separatorTransformTable = [ ',' => '' ]
26 * That would break when parsing and doing strstr '' => 'foo';
27 */
28 return $this->formatNumNoSeparators( $number );
29 }
30}
31
33class_alias( LanguageMy::class, 'LanguageMy' );
Base class for language-specific code.
Definition Language.php:68
formatNumNoSeparators( $number)
Front-end for non-commafied formatNum.