| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 67 | 4 | public function getInterestOverTimeResult(): ExploreResult |
|
| 68 | { |
||
| 69 | 4 | foreach ($this->results as $result) { |
|
| 70 | 3 | if ($result->isInterestOverTimeSearch()) { |
|
| 71 | 3 | return $result; |
|
| 72 | } |
||
| 73 | } |
||
| 74 | |||
| 75 | 1 | throw new GoogleTrendsException('No explore result available for interest over time!'); |
|
| 76 | } |
||
| 77 | } |
||
| 78 |