1 | <?php |
||
8 | class Planet extends Base |
||
9 | { |
||
10 | public $position; |
||
11 | |||
12 | public $type; |
||
13 | |||
14 | public $system; |
||
15 | |||
16 | public $name; |
||
17 | |||
18 | // by Warringer\Types\Dict |
||
19 | public function setPosition($position) |
||
36 | |||
37 | // by Warringer\Types\Reference |
||
38 | public function setType($type) |
||
42 | |||
43 | // by Warringer\Types\Reference |
||
44 | public function setSystem($system) |
||
48 | |||
49 | // by Warringer\Types\String |
||
50 | public function setName($name) |
||
54 | |||
55 | } |
||
56 |