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