Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 13 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
74 | View Code Duplication | public function put($uri, array $body = [], array $headers = []) |
|
75 | { |
||
76 | $response = $this |
||
77 | ->client |
||
78 | ->put( |
||
79 | $uri, [ |
||
80 | 'headers' => $headers, |
||
81 | 'form_params' => $body, |
||
82 | ] |
||
83 | ); |
||
84 | |||
85 | return $this->parseResponse($response); |
||
86 | } |
||
87 | |||
127 |