1 | <?php |
||
10 | class TVEpisode extends Item implements TVEpisodeInterface |
||
11 | { |
||
12 | |||
13 | 20 | public function __construct(Tmdb $tmdb, int $tv_id, int $season_number, int $episode_number, array $options = array()) |
|
17 | |||
18 | /** |
||
19 | * Get TV show id |
||
20 | * @return int |
||
21 | */ |
||
22 | 2 | public function getId(): int |
|
29 | |||
30 | 2 | public function getAirDate(): string |
|
37 | |||
38 | /** |
||
39 | * @codeCoverageIgnore |
||
40 | * @throws NotYetImplementedException |
||
41 | */ |
||
42 | public function getCrew(): \Generator |
||
46 | |||
47 | 2 | public function getEpisodeNumber(): int |
|
54 | |||
55 | /** |
||
56 | * @codeCoverageIgnore |
||
57 | * @throws NotYetImplementedException |
||
58 | */ |
||
59 | public function getGuestStars(): \Generator |
||
63 | |||
64 | 2 | public function getName(): string |
|
71 | |||
72 | 2 | public function getNote(): float |
|
79 | |||
80 | 2 | public function getNoteCount(): int |
|
87 | |||
88 | 2 | public function getOverview(): string |
|
95 | |||
96 | 2 | public function getProductionCode(): string |
|
103 | |||
104 | 2 | public function getSeasonNumber(): int |
|
111 | |||
112 | 2 | public function getStillPath(): string |
|
119 | } |
||
120 |