Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public static function getDataFromResponse($response, $key = null) |
||
27 | { |
||
28 | if (isset($response['resource_response']['data'])) { |
||
29 | $data = $response['resource_response']['data']; |
||
30 | |||
31 | if ($key) { |
||
32 | return array_key_exists($key, $data) ? $data[$key] : false; |
||
33 | } |
||
34 | return $data; |
||
35 | } |
||
36 | return false; |
||
37 | } |
||
38 | } |