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 | 27 | public function __construct(TmdbInterface $tmdb, int $movie_id, array $options = array()) |
|
61 | { |
||
62 | 27 | $this->tmdb = $tmdb; |
|
63 | 27 | $this->logger = $tmdb->getLogger(); |
|
64 | 27 | $this->data = $this->tmdb->getRequest('movie/' . $movie_id . '/videos'); |
|
65 | 27 | $this->options = $options; |
|
66 | 27 | } |
|
78 |