blob: b38b7a248f1c4c33cb6cd7a26aacbf9129a543d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php namespace Fisharebest\Localization\Script;
/**
* Class ScriptSyrj - Representation of the Syriac (Western variant) script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptSyrj extends AbstractScript implements ScriptInterface {
public function code() {
return 'Syrj';
}
public function number() {
return '137';
}
}
|