Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
61 | public function showDisputeDetails($dispute_id) |
||
62 | { |
||
63 | $this->apiEndPoint = "v1/customer/disputes/{$dispute_id}"; |
||
1 ignored issue
–
show
|
|||
64 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
1 ignored issue
–
show
|
|||
65 | |||
66 | $this->verb = 'get'; |
||
1 ignored issue
–
show
|
|||
67 | |||
68 | return $this->doPayPalRequest(); |
||
69 | } |
||
71 |