| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function showCapturedPaymentDetails($capture_id) |
||
| 19 | { |
||
| 20 | $this->apiEndPoint = "v2/payments/captures/{$capture_id}"; |
||
|
1 ignored issue
–
show
|
|||
| 21 | $this->apiUrl = collect([$this->apiUrl, $this->apiEndPoint])->implode('/'); |
||
|
1 ignored issue
–
show
|
|||
| 22 | |||
| 23 | $this->verb = 'get'; |
||
|
1 ignored issue
–
show
|
|||
| 24 | |||
| 25 | return $this->doPayPalRequest(); |
||
|
1 ignored issue
–
show
|
|||
| 26 | } |
||
| 61 |