Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | 1 | public function get(?string $key = null, mixed $default = null): mixed |
|
40 | { |
||
41 | 1 | $formattedResponse = json_decode(json_encode($this->response->response), true); |
|
42 | 1 | if (!is_null($key)) { |
|
43 | 1 | return Arr::get($formattedResponse, $key, $default); |
|
44 | } |
||
45 | |||
46 | return $formattedResponse; |
||
47 | } |
||
49 |