1 | <?php |
||
7 | class Response |
||
8 | { |
||
9 | protected $response; |
||
10 | |||
11 | public function __construct(GuzzleResponse $response) |
||
15 | |||
16 | public function getResponse() |
||
20 | |||
21 | public function getBody() |
||
22 | { |
||
23 | return json_decode($this->response->getBody(), true); |
||
24 | } |
||
25 | |||
26 | public function getStatusCode() |
||
30 | |||
31 | public function getReason() |
||
35 | } |
||
36 |