blob: 137658113500fe0198f1979a08c29f32b99cd0b3 (
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 ScriptMoon - Representation of the Moon (Moon code, Moon script, Moon type) script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptMoon extends AbstractScript implements ScriptInterface {
public function code() {
return 'Moon';
}
public function number() {
return '218';
}
}
|