1 | <?php |
||
10 | class MatchSheet |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @var int |
||
20 | */ |
||
21 | private $date; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $day; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $hour; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | private $hour_status; |
||
37 | |||
38 | /** |
||
39 | * @var Incidence[] |
||
40 | */ |
||
41 | private $incidences; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | private $instance; |
||
47 | |||
48 | /** |
||
49 | * @var string |
||
50 | */ |
||
51 | private $level; |
||
52 | |||
53 | /** |
||
54 | * @var Status |
||
55 | */ |
||
56 | private $status; |
||
57 | |||
58 | /** |
||
59 | * @var Team[] |
||
60 | */ |
||
61 | private $teams; |
||
62 | |||
63 | /** |
||
64 | * @var string |
||
65 | */ |
||
66 | private $type; |
||
67 | |||
68 | /** |
||
69 | * @var int |
||
70 | */ |
||
71 | private $timezone; |
||
72 | |||
73 | /** |
||
74 | * @return int |
||
75 | */ |
||
76 | 1 | public function getId(): int |
|
80 | |||
81 | /** |
||
82 | * @param int $id |
||
83 | * |
||
84 | * @return MatchSheet |
||
85 | */ |
||
86 | 3 | public function setId(int $id): MatchSheet |
|
91 | |||
92 | /** |
||
93 | * @return int |
||
94 | */ |
||
95 | 1 | public function getDate(): int |
|
99 | |||
100 | /** |
||
101 | * @param int $date |
||
102 | * |
||
103 | * @return MatchSheet |
||
104 | */ |
||
105 | 3 | public function setDate(int $date): MatchSheet |
|
110 | |||
111 | /** |
||
112 | * @return string |
||
113 | */ |
||
114 | 1 | public function getDay(): string |
|
118 | |||
119 | /** |
||
120 | * @param string $day |
||
121 | * |
||
122 | * @return MatchSheet |
||
123 | */ |
||
124 | 3 | public function setDay(string $day): MatchSheet |
|
129 | |||
130 | /** |
||
131 | * @return string |
||
132 | */ |
||
133 | 1 | public function getHour(): string |
|
137 | |||
138 | /** |
||
139 | * @param string $hour |
||
140 | * |
||
141 | * @return MatchSheet |
||
142 | */ |
||
143 | 3 | public function setHour(string $hour): MatchSheet |
|
148 | |||
149 | /** |
||
150 | * @return string |
||
151 | */ |
||
152 | 1 | public function getHourStatus(): string |
|
156 | |||
157 | /** |
||
158 | * @param string $hour_status |
||
159 | * |
||
160 | * @return MatchSheet |
||
161 | */ |
||
162 | 2 | public function setHourStatus(string $hour_status): MatchSheet |
|
167 | |||
168 | /** |
||
169 | * @return Incidence[] |
||
170 | */ |
||
171 | 1 | public function getIncidences(): array |
|
175 | |||
176 | /** |
||
177 | * @param \MauroMoreno\DataFactory\Entity\Incidence[] $incidences |
||
178 | * |
||
179 | * @return MatchSheet |
||
180 | */ |
||
181 | 3 | public function setIncidences(array $incidences): MatchSheet |
|
186 | |||
187 | /** |
||
188 | * @return string |
||
189 | */ |
||
190 | 1 | public function getInstance(): string |
|
194 | |||
195 | /** |
||
196 | * @param string $instance |
||
197 | * |
||
198 | * @return MatchSheet |
||
199 | */ |
||
200 | 3 | public function setInstance(string $instance): MatchSheet |
|
205 | |||
206 | /** |
||
207 | * @return string |
||
208 | */ |
||
209 | 1 | public function getLevel(): string |
|
213 | |||
214 | /** |
||
215 | * @param string $level |
||
216 | * |
||
217 | * @return MatchSheet |
||
218 | */ |
||
219 | 3 | public function setLevel(string $level): MatchSheet |
|
224 | |||
225 | /** |
||
226 | * @return Status |
||
227 | */ |
||
228 | 1 | public function getStatus(): Status |
|
232 | |||
233 | /** |
||
234 | * @param Status $status |
||
235 | * |
||
236 | * @return MatchSheet |
||
237 | */ |
||
238 | 3 | public function setStatus(Status $status): MatchSheet |
|
243 | |||
244 | /** |
||
245 | * @return Team[] |
||
246 | */ |
||
247 | 1 | public function getTeams(): array |
|
251 | |||
252 | /** |
||
253 | * @param \MauroMoreno\DataFactory\Entity\Team[] $teams |
||
254 | * |
||
255 | * @return MatchSheet |
||
256 | */ |
||
257 | 3 | public function setTeams(array $teams): MatchSheet |
|
262 | |||
263 | /** |
||
264 | * @return int |
||
265 | */ |
||
266 | 1 | public function getTimezone(): int |
|
270 | |||
271 | /** |
||
272 | * @param int $timezone |
||
273 | * |
||
274 | * @return MatchSheet |
||
275 | */ |
||
276 | 3 | public function setTimezone(int $timezone): MatchSheet |
|
281 | |||
282 | /** |
||
283 | * @return string |
||
284 | */ |
||
285 | 1 | public function getType(): string |
|
289 | |||
290 | /** |
||
291 | * @param string $type |
||
292 | * |
||
293 | * @return MatchSheet |
||
294 | */ |
||
295 | 3 | public function setType(string $type): MatchSheet |
|
300 | |||
301 | } |
||
302 |