1 | <?php |
||
4 | class Game { |
||
5 | |||
6 | /** |
||
7 | * @var string |
||
8 | */ |
||
9 | protected $name; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $box_large; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $box_medium; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $box_small; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $box_template; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $logo_large; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $logo_medium; |
||
40 | |||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $logo_small; |
||
45 | |||
46 | /** |
||
47 | * @var string |
||
48 | */ |
||
49 | protected $logo_template; |
||
50 | |||
51 | /** |
||
52 | * @var string |
||
53 | */ |
||
54 | protected $viewers; |
||
55 | |||
56 | /** |
||
57 | * @var string |
||
58 | */ |
||
59 | protected $channels; |
||
60 | |||
61 | /** |
||
62 | * @return string |
||
63 | */ |
||
64 | public function getName() |
||
68 | |||
69 | /** |
||
70 | * @param string $name |
||
71 | */ |
||
72 | public function setName($name) |
||
76 | |||
77 | /** |
||
78 | * @return string |
||
79 | */ |
||
80 | public function getBoxLarge() |
||
84 | |||
85 | /** |
||
86 | * @param string $box_large |
||
87 | */ |
||
88 | public function setBoxLarge($box_large) |
||
92 | |||
93 | /** |
||
94 | * @return string |
||
95 | */ |
||
96 | public function getBoxMedium() |
||
100 | |||
101 | /** |
||
102 | * @param string $box_medium |
||
103 | */ |
||
104 | public function setBoxMedium($box_medium) |
||
108 | |||
109 | /** |
||
110 | * @return string |
||
111 | */ |
||
112 | public function getBoxSmall() |
||
116 | |||
117 | /** |
||
118 | * @param string $box_small |
||
119 | */ |
||
120 | public function setBoxSmall($box_small) |
||
124 | |||
125 | /** |
||
126 | * @return string |
||
127 | */ |
||
128 | public function getBoxTemplate() |
||
132 | |||
133 | /** |
||
134 | * @param string $box_template |
||
135 | */ |
||
136 | public function setBoxTemplate($box_template) |
||
140 | |||
141 | /** |
||
142 | * @return string |
||
143 | */ |
||
144 | public function getLogoLarge() |
||
148 | |||
149 | /** |
||
150 | * @param string $logo_large |
||
151 | */ |
||
152 | public function setLogoLarge($logo_large) |
||
156 | |||
157 | /** |
||
158 | * @return string |
||
159 | */ |
||
160 | public function getLogoMedium() |
||
164 | |||
165 | /** |
||
166 | * @param string $logo_medium |
||
167 | */ |
||
168 | public function setLogoMedium($logo_medium) |
||
172 | |||
173 | /** |
||
174 | * @return string |
||
175 | */ |
||
176 | public function getLogoSmall() |
||
180 | |||
181 | /** |
||
182 | * @param string $logo_small |
||
183 | */ |
||
184 | public function setLogoSmall($logo_small) |
||
188 | |||
189 | /** |
||
190 | * @return string |
||
191 | */ |
||
192 | public function getLogoTemplate() |
||
196 | |||
197 | /** |
||
198 | * @param string $logo_template |
||
199 | */ |
||
200 | public function setLogoTemplate($logo_template) |
||
204 | |||
205 | /** |
||
206 | * @return string |
||
207 | */ |
||
208 | public function getViewers() |
||
212 | |||
213 | /** |
||
214 | * @param string $viewers |
||
215 | */ |
||
216 | public function setViewers($viewers) |
||
220 | |||
221 | /** |
||
222 | * @return string |
||
223 | */ |
||
224 | public function getChannels() |
||
228 | |||
229 | /** |
||
230 | * @param string $channels |
||
231 | */ |
||
232 | public function setChannels($channels) |
||
236 | } |