| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function updateDispute(array $data, $dispute_id) |
||
| 39 | { |
||
| 40 | $this->apiEndPoint = "v1/customer/disputes/{$dispute_id}"; |
||
|
1 ignored issue
–
show
|
|||
| 41 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
|
1 ignored issue
–
show
|
|||
| 42 | |||
| 43 | $this->options['json'] = $data; |
||
|
1 ignored issue
–
show
|
|||
| 44 | |||
| 45 | $this->verb = 'patch'; |
||
|
1 ignored issue
–
show
|
|||
| 46 | |||
| 47 | return $this->doPayPalRequest(); |
||
| 48 | } |
||
| 71 |