Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct(ResponseInterface $response) |
||
23 | { |
||
24 | $this->response = $response; |
||
25 | |||
26 | $body = json_decode($response->getBody(), true); |
||
27 | |||
28 | if ($body !== null) { |
||
29 | if (isset($body['error']['.tag'])) { |
||
30 | $this->dropboxCode = $body['error']['.tag']; |
||
31 | } |
||
32 | |||
33 | parent::__construct($body['error_summary']); |
||
34 | } |
||
35 | } |
||
36 | } |
||
37 |