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 string |
||
40 | */ |
||
41 | private $instance; |
||
42 | |||
43 | /** |
||
44 | * @var Status |
||
45 | */ |
||
46 | private $status; |
||
47 | |||
48 | /** |
||
49 | * @var Team[] |
||
50 | */ |
||
51 | private $teams; |
||
52 | |||
53 | /** |
||
54 | * @var string |
||
55 | */ |
||
56 | private $type; |
||
57 | |||
58 | /** |
||
59 | * @var int |
||
60 | */ |
||
61 | private $timezone; |
||
62 | |||
63 | /** |
||
64 | * @return int |
||
65 | */ |
||
66 | public function getId(): int |
||
70 | |||
71 | /** |
||
72 | * @param int $id |
||
73 | * |
||
74 | * @return MatchSheet |
||
75 | */ |
||
76 | public function setId(int $id): MatchSheet |
||
81 | |||
82 | /** |
||
83 | * @return int |
||
84 | */ |
||
85 | public function getDate(): int |
||
89 | |||
90 | /** |
||
91 | * @param int $date |
||
92 | * |
||
93 | * @return MatchSheet |
||
94 | */ |
||
95 | public function setDate(int $date): MatchSheet |
||
100 | |||
101 | /** |
||
102 | * @return string |
||
103 | */ |
||
104 | public function getDay(): string |
||
108 | |||
109 | /** |
||
110 | * @param string $day |
||
111 | * |
||
112 | * @return MatchSheet |
||
113 | */ |
||
114 | public function setDay(string $day): MatchSheet |
||
119 | |||
120 | /** |
||
121 | * @return string |
||
122 | */ |
||
123 | public function getHour(): string |
||
127 | |||
128 | /** |
||
129 | * @param string $hour |
||
130 | * |
||
131 | * @return MatchSheet |
||
132 | */ |
||
133 | public function setHour(string $hour): MatchSheet |
||
138 | |||
139 | /** |
||
140 | * @return string |
||
141 | */ |
||
142 | public function getHourStatus(): string |
||
146 | |||
147 | /** |
||
148 | * @param string $hour_status |
||
149 | * |
||
150 | * @return MatchSheet |
||
151 | */ |
||
152 | public function setHourStatus(string $hour_status): MatchSheet |
||
157 | |||
158 | /** |
||
159 | * @return string |
||
160 | */ |
||
161 | public function getInstance(): string |
||
165 | |||
166 | /** |
||
167 | * @param string $instance |
||
168 | * |
||
169 | * @return MatchSheet |
||
170 | */ |
||
171 | public function setInstance(string $instance): MatchSheet |
||
176 | |||
177 | /** |
||
178 | * @return Status |
||
179 | */ |
||
180 | public function getStatus(): Status |
||
184 | |||
185 | /** |
||
186 | * @param Status $status |
||
187 | * |
||
188 | * @return MatchSheet |
||
189 | */ |
||
190 | public function setStatus(Status $status): MatchSheet |
||
195 | |||
196 | /** |
||
197 | * @return Team[] |
||
198 | */ |
||
199 | public function getTeams(): array |
||
203 | |||
204 | /** |
||
205 | * @param \MauroMoreno\DataFactory\Entity\Team[] $teams |
||
206 | * |
||
207 | * @return MatchSheet |
||
208 | */ |
||
209 | public function setTeams(array $teams): MatchSheet |
||
214 | |||
215 | /** |
||
216 | * @return int |
||
217 | */ |
||
218 | public function getTimezone(): int |
||
222 | |||
223 | /** |
||
224 | * @param int $timezone |
||
225 | * |
||
226 | * @return MatchSheet |
||
227 | */ |
||
228 | public function setTimezone(int $timezone): MatchSheet |
||
233 | |||
234 | /** |
||
235 | * @return string |
||
236 | */ |
||
237 | public function getType(): string |
||
241 | |||
242 | /** |
||
243 | * @param string $type |
||
244 | * |
||
245 | * @return MatchSheet |
||
246 | */ |
||
247 | public function setType(string $type): MatchSheet |
||
252 | |||
253 | } |
||
254 |