MediaWiki REL1_39
LanguageMy.php
Go to the documentation of this file.
1<?php
27class LanguageMy extends Language {
28
34 public function formatNum( $number, $noSeparators = null ) {
35 /* NO-op. Cannot use
36 * $separatorTransformTable = [ ',' => '' ]
37 * That would break when parsing and doing strstr '' => 'foo';
38 */
39 return $this->formatNumNoSeparators( $number );
40 }
41}
Burmese (Myanmasa)
formatNum( $number, $noSeparators=null)
Base class for language-specific code.
Definition Language.php:53
formatNumNoSeparators( $number)
Front-end for non-commafied formatNum.