-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathSeason.php
More file actions
372 lines (327 loc) · 6.3 KB
/
Season.php
File metadata and controls
372 lines (327 loc) · 6.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?php
/**
* This file is part of the Tmdb PHP API created by Michael Roterman.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package Tmdb
* @author Michael Roterman <michael@wtfz.net>
* @copyright (c) 2013, Michael Roterman
* @version 4.0.0
*/
namespace Tmdb\Model\Tv;
use DateTime;
use Tmdb\Model\AbstractModel;
use Tmdb\Model\Collection\Changes;
use Tmdb\Model\Collection\CreditsCollection;
use Tmdb\Model\Collection\Images;
use Tmdb\Model\Collection\Videos;
use Tmdb\Model\Common\ExternalIds;
use Tmdb\Model\Common\GenericCollection;
use Tmdb\Model\Image\PosterImage;
/**
* Class Season
* @package Tmdb\Model\Tv
*/
class Season extends AbstractModel
{
/**
* Properties that are available in the API
*
* These properties are hydrated by the ObjectHydrator, all the other properties are handled by the factory.
*
* @var array
*/
public static $properties = [
'air_date',
'name',
'overview',
'id',
'poster_path',
'season_number'
];
/**
* Credits
*
* @var CreditsCollection
*/
protected $credits;
/**
* External Ids
*
* @var ExternalIds
*/
protected $externalIds;
/**
* Images
*
* @var Images
*/
protected $images;
/**
* @var PosterImage
*/
protected $poster;
/**
* @var Videos
*/
protected $videos;
/**
* @var Changes
*/
protected $changes;
/**
* @var \DateTime|null
*/
private $airDate;
/**
* @var GenericCollection|Episode[]
*/
private $episodes;
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $overview;
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $posterPath;
/**
* @var integer
*/
private $seasonNumber;
/**
* Constructor
*/
public function __construct()
{
$this->credits = new CreditsCollection();
$this->externalIds = new ExternalIds();
$this->images = new Images();
$this->episodes = new GenericCollection();
$this->videos = new Videos();
$this->changes = new Changes();
}
/**
* @return ?DateTime
*/
public function getAirDate()
{
return $this->airDate;
}
/**
* @param DateTime|string|null $airDate
* @return self
*/
public function setAirDate($airDate = null)
{
if (empty($airDate)) {
$airDate = null;
} elseif (!$airDate instanceof DateTime) {
$airDate = new DateTime($airDate);
}
$this->airDate = $airDate;
return $this;
}
/**
* @return GenericCollection|Episode[]
*/
public function getEpisodes()
{
return $this->episodes;
}
/**
* @param GenericCollection $episodes
* @return self
*/
public function setEpisodes($episodes)
{
$this->episodes = $episodes;
return $this;
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @param int $id
* @return self
*/
public function setId($id)
{
$this->id = (int)$id;
return $this;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string $name
* @return self
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* @return string
*/
public function getOverview()
{
return $this->overview;
}
/**
* @param string $overview
* @return self
*/
public function setOverview($overview)
{
$this->overview = $overview;
return $this;
}
/**
* @return string
*/
public function getPosterPath()
{
return $this->posterPath;
}
/**
* @param string $posterPath
* @return self
*/
public function setPosterPath($posterPath)
{
$this->posterPath = $posterPath;
return $this;
}
/**
* @return int
*/
public function getSeasonNumber()
{
return $this->seasonNumber;
}
/**
* @param int $seasonNumber
* @return self
*/
public function setSeasonNumber($seasonNumber)
{
$this->seasonNumber = $seasonNumber;
return $this;
}
/**
* @return CreditsCollection
*/
public function getCredits()
{
return $this->credits;
}
/**
* @param CreditsCollection $credits
* @return self
*/
public function setCredits($credits)
{
$this->credits = $credits;
return $this;
}
/**
* @return ExternalIds
*/
public function getExternalIds()
{
return $this->externalIds;
}
/**
* @param ExternalIds $externalIds
* @return self
*/
public function setExternalIds($externalIds)
{
$this->externalIds = $externalIds;
return $this;
}
/**
* @return Images
*/
public function getImages()
{
return $this->images;
}
/**
* @param Images $images
* @return self
*/
public function setImages($images)
{
$this->images = $images;
return $this;
}
/**
* @param PosterImage $poster
* @return self
*/
public function setPosterImage($poster)
{
$this->poster = $poster;
return $this;
}
/**
* @return ?PosterImage
*/
public function getPosterImage()
{
return $this->poster;
}
/**
* @return Videos
*/
public function getVideos()
{
return $this->videos;
}
/**
* @param Videos $videos
* @return self
*/
public function setVideos($videos)
{
$this->videos = $videos;
return $this;
}
/**
* @return Changes
*/
public function getChanges()
{
return $this->changes;
}
/**
* @param Changes $changes
* @return self
*/
public function setChanges($changes)
{
$this->changes = $changes;
return $this;
}
}