| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 60 | 3 | public function __construct(TmdbInterface $tmdb, int $movie_id, array $options = array()) |
|
| 61 | { |
||
| 62 | 3 | $this->tmdb = $tmdb; |
|
| 63 | 3 | $this->logger = $tmdb->getLogger(); |
|
| 64 | 3 | $this->data = $this->tmdb->getRequest('movie/' . $movie_id . '/videos'); |
|
| 65 | 3 | $this->options = $options; |
|
| 66 | 3 | } |
|
| 79 |