Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
74 | public function acknowledgeItemReturned($dispute_id, $dispute_note, $acknowledgement_type) |
||
75 | { |
||
76 | $this->apiEndPoint = "v1/customer/disputes/{$dispute_id}/acknowledge-return-item"; |
||
1 ignored issue
–
show
|
|||
77 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
1 ignored issue
–
show
|
|||
78 | |||
79 | $this->options['json'] = [ |
||
1 ignored issue
–
show
|
|||
80 | "note" => $dispute_note, |
||
81 | "acknowledgement_type" => $acknowledgement_type |
||
82 | ]; |
||
83 | |||
84 | $this->verb = 'post'; |
||
1 ignored issue
–
show
|
|||
85 | |||
86 | return $this->doPayPalRequest(); |
||
87 | } |
||
89 |