| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 37 | 2 | public function getPostersGeneric(string $url, string $key) : \Generator |
|
| 38 | { |
||
| 39 | 2 | $data = $this->tmdb->getRequest($url, $this->params); |
|
| 40 | |||
| 41 | 2 | foreach ($data->$key as $b) { |
|
| 42 | 2 | $image = new Results\Image($this->tmdb, $this->id, $b); |
|
| 43 | 2 | yield $image; |
|
| 44 | } |
||
| 45 | 2 | } |
|
| 46 | } |
||
| 47 |