| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 94 | View Code Duplication | public function delete($uri, array $body = [], array $headers = []) |
|
| 95 | { |
||
| 96 | $response = $this |
||
| 97 | ->client |
||
| 98 | ->delete($uri, [ |
||
| 99 | 'headers' => $headers, |
||
| 100 | 'form_params' => $body, |
||
| 101 | ]); |
||
| 102 | |||
| 103 | return $this->parseResponse($response); |
||
| 104 | } |
||
| 105 | |||
| 127 |