| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | public function showReferralData(string $partner_referral_id) |
||
| 42 | { |
||
| 43 | $this->apiEndPoint = "v2/customer/partner-referrals/{$partner_referral_id}"; |
||
| 44 | $this->apiUrl = collect([$this->config['api_url'], $this->apiEndPoint])->implode('/'); |
||
| 45 | |||
| 46 | $this->verb = 'get'; |
||
| 47 | |||
| 48 | return $this->doPayPalRequest(); |
||
| 49 | } |
||
| 51 |