blob: 6839bc93eea8749f5d0e344bda6be8cdaba0f371 (
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
31
32
33
|
<?php
namespace Fisharebest\Localization\Script;
/**
* Class ScriptJava - Representation of the Javanese script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2019 Greg Roach
* @license GPLv3+
*/
class ScriptJava extends AbstractScript implements ScriptInterface
{
public function code()
{
return 'Java';
}
public function numerals()
{
return array('꧐', '꧑', '꧒', '꧓', '꧔', '꧕', '꧖', '꧗', '꧘', '꧙');
}
public function number()
{
return '361';
}
public function unicodeName()
{
return 'Javanese';
}
}
|