Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function request($method, $uri, array $get = [], array $post = []) |
||
40 | { |
||
41 | $options = [ |
||
42 | 'query' => $get, |
||
43 | 'form_params' => $post, |
||
44 | ]; |
||
45 | |||
46 | try { |
||
47 | return $this->client->request($method, $uri, $options); |
||
48 | } catch (RequestException $e) { |
||
49 | return $e->getResponse(); |
||
50 | } |
||
51 | } |
||
52 | } |
||
53 |