| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function __construct(Tmdb $tmdb, \stdClass $result) |
||
| 24 | { |
||
| 25 | parent::__construct($tmdb, $result); |
||
| 26 | |||
| 27 | // Populate data |
||
| 28 | $this->id = $this->data->id; |
||
| 29 | $this->release_date = $this->data->air_date; |
||
| 30 | $this->episode_count = $this->data->episode_count; |
||
| 31 | $this->poster_path = $this->data->poster_path; |
||
| 32 | $this->season_number = $this->data->season_number; |
||
| 33 | } |
||
| 34 | |||
| 55 |