| 1 | <?php |
||
| 7 | abstract class Results extends Element implements \vfalies\tmdb\Interfaces\ResultsInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $id = null; |
||
| 11 | protected $poster_path = null; |
||
| 12 | protected $backdrop_path = null; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Constructor |
||
| 16 | * @param \vfalies\tmdb\Tmdb $tmdb |
||
| 17 | * @param \stdClass $result |
||
| 18 | * @throws \Exception |
||
| 19 | */ |
||
| 20 | 37 | public function __construct(Tmdb $tmdb, \stdClass $result) |
|
| 36 | |||
| 37 | } |
||
| 38 |