Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
35 | 6 | public function getRelatedQueriesResult(): ExploreResult |
|
36 | { |
||
37 | 6 | foreach ($this->results as $result) { |
|
38 | 5 | if ($result->isRelatedQueriesSearch()) { |
|
39 | 5 | return $result; |
|
40 | } |
||
41 | } |
||
42 | |||
43 | 1 | throw new GoogleTrendsException('No explore result available for related queries!'); |
|
44 | } |
||
45 | |||
78 |