| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 51 | 6 | public function getRelatedTopicsResult(): ExploreResult |
|
| 52 | { |
||
| 53 | 6 | foreach ($this->results as $result) { |
|
| 54 | 5 | if ($result->isRelatedTopicsSearch()) { |
|
| 55 | 5 | return $result; |
|
| 56 | } |
||
| 57 | } |
||
| 58 | |||
| 59 | 1 | throw new GoogleTrendsException('No explore result available for related topics!'); |
|
| 60 | } |
||
| 61 | |||
| 78 |