Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function acceptDisputeOfferResolution($dispute_id, $dispute_note) |
||
48 | { |
||
49 | $this->apiEndPoint = "v1/customer/disputes/{$dispute_id}/accept-offer"; |
||
1 ignored issue
–
show
|
|||
50 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
1 ignored issue
–
show
|
|||
51 | |||
52 | $this->options['json'] = [ |
||
1 ignored issue
–
show
|
|||
53 | "note" => $dispute_note, |
||
54 | ]; |
||
55 | |||
56 | $this->verb = 'post'; |
||
1 ignored issue
–
show
|
|||
57 | |||
58 | return $this->doPayPalRequest(); |
||
59 | } |
||
89 |