1 | <?php |
||
8 | abstract class Item extends Element |
||
9 | { |
||
10 | |||
11 | protected $id = null; |
||
12 | protected $tmdb = null; |
||
13 | |||
14 | /** |
||
15 | * Constructor |
||
16 | * @param \vfalies\tmdb\Tmdb $tmdb |
||
17 | * @param int $item_id |
||
18 | * @param array $options |
||
19 | * @param string $item_name |
||
20 | * @throws \Exception |
||
21 | */ |
||
22 | 83 | public function __construct(Tmdb $tmdb, int $item_id, array $options, string $item_name) |
|
37 | |||
38 | |||
39 | } |
||
40 |