| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 12 | public function __construct(\vfalies\tmdb\Tmdb $tmdb, \stdClass $result) |
|
| 17 | { |
||
| 18 | 12 | parent::__construct($tmdb, $result); |
|
| 19 | |||
| 20 | // Populate data |
||
| 21 | 12 | $this->id = $result->id; |
|
| 22 | 12 | $this->name = $result->name; |
|
| 23 | 12 | $this->poster_path = $result->poster_path; |
|
| 24 | 12 | $this->backdrop_path = $result->backdrop_path; |
|
| 25 | 12 | } |
|
| 26 | |||
| 61 |