blob: 966f9af90d3944451a2fcbba12e08a4b04ca67d5 (
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 ScriptBhks - Representation of the Bhaiksuki script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptBhks extends AbstractScript implements ScriptInterface {
public function code() {
return 'Bhks';
}
public function number() {
return '334';
}
}
|