| 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 | protected $property_blacklist = ['property_blacklist', 'conf', 'data']; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Constructor |
||
| 17 | * @param \vfalies\tmdb\Tmdb $tmdb |
||
| 18 | * @param \stdClass $result |
||
| 19 | * @throws \Exception |
||
| 20 | */ |
||
| 21 | 37 | public function __construct(Tmdb $tmdb, \stdClass $result) |
|
| 37 | |||
| 38 | } |
||
| 39 |