| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function createPartnerReferral(array $partner_data) |
||
| 19 | { |
||
| 20 | $this->apiEndPoint = 'v2/customer/partner-referrals'; |
||
| 21 | $this->apiUrl = collect([$this->config['api_url'], $this->apiEndPoint])->implode('/'); |
||
| 22 | |||
| 23 | $this->options['json'] = $partner_data; |
||
| 24 | |||
| 25 | $this->verb = 'post'; |
||
| 26 | |||
| 27 | return $this->doPayPalRequest(); |
||
| 28 | } |
||
| 51 |