Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public static function parseResponse(Response $response) |
||
31 | { |
||
32 | $jsonData = \GuzzleHttp\json_decode($response->getBody(), true); |
||
33 | if (!isset($jsonData['result']['vfwebqq'])) { |
||
34 | throw new RuntimeException('Can not find argument [vfwebqq]'); |
||
35 | } |
||
36 | |||
37 | return $jsonData['result']['vfwebqq']; |
||
38 | } |
||
39 | } |
||
40 |