Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
1 | <?php |
||
38 | public function __construct($response) |
||
39 | { |
||
40 | if (is_array($response)) { // For some reason, playback is an array, so this fixes that problem |
||
41 | $this->response = json_decode(json_encode($response), false); |
||
42 | } elseif (is_object($response)) { |
||
43 | $this->response = $response; |
||
44 | } else { |
||
45 | $this->response = json_decode($response); |
||
46 | } |
||
47 | } |
||
48 | |||
50 |