blob: 4f49e901c763e1ad9330c3a260cd5c9db3e77572 (
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 ScriptTirh - Representation of the Tirhuta script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptTirh extends AbstractScript implements ScriptInterface {
public function code() {
return 'Tirh';
}
public function number() {
return '326';
}
public function unicodeName() {
return 'Tirhuta';
}
}
|