1 | <?php |
||
5 | class Collection extends Results |
||
6 | { |
||
7 | |||
8 | protected $name = null; |
||
9 | |||
10 | /** |
||
11 | * Constructor |
||
12 | * @param \vfalies\tmdb\Tmdb $tmdb |
||
13 | * @param \stdClass $result |
||
14 | * @throws \Exception |
||
15 | */ |
||
16 | 12 | public function __construct(\vfalies\tmdb\Tmdb $tmdb, \stdClass $result) |
|
26 | |||
27 | /** |
||
28 | * Get collection ID |
||
29 | * @return int |
||
30 | */ |
||
31 | 1 | public function getId(): int |
|
35 | |||
36 | /** |
||
37 | * Get collection name |
||
38 | * @return string |
||
39 | */ |
||
40 | 1 | public function getTitle(): string |
|
44 | |||
45 | 1 | public function getOriginalTitle(): string |
|
49 | |||
50 | 1 | public function getOverview(): string |
|
54 | |||
55 | 1 | public function getReleaseDate(): string |
|
59 | |||
60 | } |
||
61 |