blob: 936b1b69210b0bdd476a8385a91a831f5a7a2f67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php namespace Fisharebest\Localization\Script;
/**
* Class ScriptMahj - Representation of the Mahajani script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptMahj extends AbstractScript implements ScriptInterface {
public function code() {
return 'Mahj';
}
public function number() {
return '314';
}
public function unicodeName() {
return 'Mahajani';
}
}
|