blob: da3b1c7940853e0500de22d288e498cbdad5f898 (
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 ScriptPrti - Representation of the Inscriptional Parthian script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptPrti extends AbstractScript implements ScriptInterface {
public function code() {
return 'Prti';
}
public function number() {
return '130';
}
public function unicodeName() {
return 'Inscriptional_Parthian';
}
}
|