Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function count(ResponseInterface $response): int |
||
33 | { |
||
34 | $json = json_decode($response->getBody()->getContents(), true, 512, JSON_THROW_ON_ERROR); |
||
35 | |||
36 | if (!isset($json['result']['views'])) { |
||
37 | throw new FetchException('The "result.views" attributes could not be found', $response->getBody()->getContents()); |
||
38 | } |
||
39 | |||
40 | return (int) $json['result']['views']; |
||
41 | } |
||
42 | } |
||
43 |