1 | <?php |
||
8 | class TournamentTeam extends Base |
||
9 | { |
||
10 | public $banFrequencyAgainst = []; |
||
11 | |||
12 | public $shipsKilled; |
||
13 | |||
14 | public $pilots = []; |
||
15 | |||
16 | public $matches = []; |
||
17 | |||
18 | public $flagshipType; |
||
19 | |||
20 | public $name; |
||
21 | |||
22 | public $seed; |
||
23 | |||
24 | public $banFrequency = []; |
||
25 | |||
26 | public $members; |
||
27 | |||
28 | public $captain; |
||
29 | |||
30 | public $iskKilled; |
||
31 | |||
32 | // by Warringer\Types\ArrayType |
||
33 | public function setBanFrequencyAgainst($banFrequencyAgainst) |
||
51 | |||
52 | // by Warringer\Types\Long |
||
53 | public function setShipsKilled($shipsKilled) |
||
57 | |||
58 | // by Warringer\Types\ArrayType |
||
59 | public function setPilots($pilots) |
||
68 | |||
69 | // by Warringer\Types\ArrayType |
||
70 | public function setMatches($matches) |
||
79 | |||
80 | // by Warringer\Types\Reference |
||
81 | public function setFlagshipType($flagshipType) |
||
85 | |||
86 | // by Warringer\Types\String |
||
87 | public function setName($name) |
||
91 | |||
92 | // by Warringer\Types\Long |
||
93 | public function setSeed($seed) |
||
97 | |||
98 | // by Warringer\Types\ArrayType |
||
99 | public function setBanFrequency($banFrequency) |
||
117 | |||
118 | // by Warringer\Types\Reference |
||
119 | public function setMembers($members) |
||
123 | |||
124 | // by Warringer\Types\Reference |
||
125 | public function setCaptain($captain) |
||
129 | |||
130 | // by Warringer\Types\Long |
||
131 | public function setIskKilled($iskKilled) |
||
135 | |||
136 | } |
||
137 |