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