1 | <?php |
||
9 | class TVSeason extends Item implements TVSeasonInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * Constructor |
||
14 | * @param \vfalies\tmdb\Tmdb $tmdb |
||
15 | * @param int $tv_id |
||
16 | * @param int $season_number |
||
17 | * @param array $options |
||
18 | * @throws Exception |
||
19 | */ |
||
20 | 24 | public function __construct(Tmdb $tmdb, int $tv_id, int $season_number, array $options = array()) |
|
24 | |||
25 | 2 | public function getId(): int |
|
32 | |||
33 | 2 | public function getAirDate(): string |
|
40 | |||
41 | 2 | public function getEpisodeCount(): int |
|
48 | |||
49 | 2 | public function getSeasonNumber(): int |
|
56 | |||
57 | 12 | public function getEpisodes(): \Generator |
|
66 | |||
67 | 2 | public function getName(): string |
|
74 | |||
75 | 2 | public function getOverview(): string |
|
82 | } |
||
83 |