1 | <?php |
||
26 | class PeopleMovieCrew extends Results |
||
27 | { |
||
28 | |||
29 | /** |
||
30 | * Adult |
||
31 | * @var boolean |
||
32 | */ |
||
33 | protected $adult = null; |
||
34 | |||
35 | /** |
||
36 | * Credit Id |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $credit_id = null; |
||
40 | |||
41 | /** |
||
42 | * title |
||
43 | * @var string |
||
44 | */ |
||
45 | protected $title = null; |
||
46 | |||
47 | /** |
||
48 | * Image poster path |
||
49 | * @var string |
||
50 | */ |
||
51 | protected $poster_path = null; |
||
52 | |||
53 | /** |
||
54 | * original title |
||
55 | * @var string |
||
56 | */ |
||
57 | protected $original_title = null; |
||
58 | |||
59 | /** |
||
60 | * Release date |
||
61 | * @var string |
||
62 | */ |
||
63 | protected $release_date = null; |
||
64 | |||
65 | /** |
||
66 | * Id |
||
67 | * @var int |
||
68 | */ |
||
69 | protected $id = null; |
||
70 | |||
71 | /** |
||
72 | * Department |
||
73 | * @var string |
||
74 | */ |
||
75 | protected $department = null; |
||
76 | |||
77 | /** |
||
78 | * Job |
||
79 | * @var string |
||
80 | */ |
||
81 | protected $job = null; |
||
82 | |||
83 | /** |
||
84 | * Constructor |
||
85 | * @param \vfalies\tmdb\Interfaces\TmdbInterface $tmdb |
||
86 | * @param \stdClass $result |
||
87 | */ |
||
88 | 10 | public function __construct(TmdbInterface $tmdb, \stdClass $result) |
|
102 | |||
103 | /** |
||
104 | * Get Id |
||
105 | * @return int |
||
106 | */ |
||
107 | 1 | public function getId() |
|
111 | |||
112 | /** |
||
113 | * Get credit Id |
||
114 | * @return string |
||
115 | */ |
||
116 | 1 | public function getCreditId() |
|
120 | |||
121 | /** |
||
122 | * Get department name |
||
123 | * @return string |
||
124 | */ |
||
125 | 1 | public function getDepartment() |
|
129 | |||
130 | /** |
||
131 | * Get job |
||
132 | * @return string |
||
133 | */ |
||
134 | 1 | public function getJob() |
|
138 | |||
139 | /** |
||
140 | * Get title |
||
141 | * @return string |
||
142 | */ |
||
143 | 1 | public function getTitle() |
|
147 | |||
148 | /** |
||
149 | * Get original title |
||
150 | * @return string |
||
151 | */ |
||
152 | 1 | public function getOriginalTitle() |
|
156 | |||
157 | /** |
||
158 | * Get poster path |
||
159 | * @return string |
||
160 | */ |
||
161 | 1 | public function getPosterPath() |
|
165 | |||
166 | /** |
||
167 | * Get release date |
||
168 | * @return string |
||
169 | */ |
||
170 | 1 | public function getReleaseDate() |
|
174 | |||
175 | /** |
||
176 | * Adult |
||
177 | * @return boolean |
||
178 | */ |
||
179 | 1 | public function getAdult() |
|
183 | } |
||
184 |