summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Script/ScriptLimb.php
blob: dd229d9b6c1ff90ac3dad354fb132bf5c47c28f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php namespace Fisharebest\Localization\Script;

/**
 * Class ScriptLimb - Representation of the Limbu script.
 *
 * @author    Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license   GPLv3+
 */
class ScriptLimb extends AbstractScript implements ScriptInterface {
	/** {@inheritdoc} */
	public function code() {
		return 'Limb';
	}

	/** {@inheritdoc} */
	public function numerals() {
		return array('᥆', '᥇', '᥈', '᥉', '᥊', '᥋', '᥌', '᥍', '᥎', '᥏');
	}

	/** {@inheritdoc} */
	public function number() {
		return '336';
	}

	/** {@inheritdoc} */
	public function unicodeName() {
		return 'Limbu';
	}
}