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 Status |
||
50 | */ |
||
51 | private $status; |
||
52 | |||
53 | /** |
||
54 | * @var Team[] |
||
55 | */ |
||
56 | private $teams; |
||
57 | |||
58 | /** |
||
59 | * @var string |
||
60 | */ |
||
61 | private $type; |
||
62 | |||
63 | /** |
||
64 | * @var int |
||
65 | */ |
||
66 | private $timezone; |
||
67 | |||
68 | /** |
||
69 | * @return int |
||
70 | */ |
||
71 | public function getId(): int |
||
75 | |||
76 | /** |
||
77 | * @param int $id |
||
78 | * |
||
79 | * @return MatchSheet |
||
80 | */ |
||
81 | public function setId(int $id): MatchSheet |
||
86 | |||
87 | /** |
||
88 | * @return int |
||
89 | */ |
||
90 | public function getDate(): int |
||
94 | |||
95 | /** |
||
96 | * @param int $date |
||
97 | * |
||
98 | * @return MatchSheet |
||
99 | */ |
||
100 | public function setDate(int $date): MatchSheet |
||
105 | |||
106 | /** |
||
107 | * @return string |
||
108 | */ |
||
109 | public function getDay(): string |
||
113 | |||
114 | /** |
||
115 | * @param string $day |
||
116 | * |
||
117 | * @return MatchSheet |
||
118 | */ |
||
119 | public function setDay(string $day): MatchSheet |
||
124 | |||
125 | /** |
||
126 | * @return string |
||
127 | */ |
||
128 | public function getHour(): string |
||
132 | |||
133 | /** |
||
134 | * @param string $hour |
||
135 | * |
||
136 | * @return MatchSheet |
||
137 | */ |
||
138 | public function setHour(string $hour): MatchSheet |
||
143 | |||
144 | /** |
||
145 | * @return string |
||
146 | */ |
||
147 | public function getHourStatus(): string |
||
151 | |||
152 | /** |
||
153 | * @param string $hour_status |
||
154 | * |
||
155 | * @return MatchSheet |
||
156 | */ |
||
157 | public function setHourStatus(string $hour_status): MatchSheet |
||
162 | |||
163 | /** |
||
164 | * @return Incidence[] |
||
165 | */ |
||
166 | public function getIncidences(): array |
||
170 | |||
171 | /** |
||
172 | * @param \MauroMoreno\DataFactory\Entity\Incidence[] $incidences |
||
173 | * |
||
174 | * @return MatchSheet |
||
175 | */ |
||
176 | public function setIncidences(array $incidences): MatchSheet |
||
181 | |||
182 | /** |
||
183 | * @return string |
||
184 | */ |
||
185 | public function getInstance(): string |
||
189 | |||
190 | /** |
||
191 | * @param string $instance |
||
192 | * |
||
193 | * @return MatchSheet |
||
194 | */ |
||
195 | public function setInstance(string $instance): MatchSheet |
||
200 | |||
201 | /** |
||
202 | * @return Status |
||
203 | */ |
||
204 | public function getStatus(): Status |
||
208 | |||
209 | /** |
||
210 | * @param Status $status |
||
211 | * |
||
212 | * @return MatchSheet |
||
213 | */ |
||
214 | public function setStatus(Status $status): MatchSheet |
||
219 | |||
220 | /** |
||
221 | * @return Team[] |
||
222 | */ |
||
223 | public function getTeams(): array |
||
227 | |||
228 | /** |
||
229 | * @param \MauroMoreno\DataFactory\Entity\Team[] $teams |
||
230 | * |
||
231 | * @return MatchSheet |
||
232 | */ |
||
233 | public function setTeams(array $teams): MatchSheet |
||
238 | |||
239 | /** |
||
240 | * @return int |
||
241 | */ |
||
242 | public function getTimezone(): int |
||
246 | |||
247 | /** |
||
248 | * @param int $timezone |
||
249 | * |
||
250 | * @return MatchSheet |
||
251 | */ |
||
252 | public function setTimezone(int $timezone): MatchSheet |
||
257 | |||
258 | /** |
||
259 | * @return string |
||
260 | */ |
||
261 | public function getType(): string |
||
265 | |||
266 | /** |
||
267 | * @param string $type |
||
268 | * |
||
269 | * @return MatchSheet |
||
270 | */ |
||
271 | public function setType(string $type): MatchSheet |
||
276 | |||
277 | } |
||
278 |