| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 31 | 60 | public function __construct(TmdbInterface $tmdb, int $people_id, array $options = array()) |
|
| 32 | { |
||
| 33 | try { |
||
| 34 | 60 | $this->crew_class = PeopleMovieCrew::class; |
|
| 35 | 60 | $this->cast_class = PeopleMovieCast::class; |
|
| 36 | |||
| 37 | 60 | parent::__construct($tmdb, 'movie', $people_id, $options); |
|
| 38 | 3 | } catch (TmdbException $ex) { |
|
| 39 | 3 | throw $ex; |
|
| 40 | } |
||
| 43 |