MediaWiki  master
LanguageMy.php
Go to the documentation of this file.
1 <?php
27 class 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)
Definition: LanguageMy.php:27
formatNum( $number, $noSeparators=null)
Definition: LanguageMy.php:34
Base class for language-specific code.
Definition: Language.php:56
formatNumNoSeparators( $number)
Front-end for non-commafied formatNum.
Definition: Language.php:3334