| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 51 | 9 | public function getCrew() : \Generator |
|
| 52 | { |
||
| 53 | 9 | if (!empty($this->tvepisode_trait->data->crew)) { |
|
| 54 | 9 | foreach ($this->tvepisode_trait->data->crew as $crew) { |
|
| 55 | 9 | $crew->gender = null; |
|
| 56 | |||
| 57 | 9 | $return = new Results\Crew($this->tvepisode_trait->tmdb, $crew); |
|
| 58 | 9 | yield $return; |
|
| 59 | } |
||
| 60 | } |
||
| 61 | 2 | } |
|
| 62 | } |
||
| 63 |