| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function buyEPins(NetworkEnum $network, $amount, int $quantity, $requestID, $callbackUrl = null): ClubKonnectResponse |
||
| 45 | { |
||
| 46 | $callbackUrl = is_null($callbackUrl) ? $this->config['default_redirect_url'] : $callbackUrl; |
||
| 47 | return $this->clubKonnect->withAuth('APIEPINV1.asp', [ |
||
| 48 | 'MobileNetwork' => $network->getCode(), |
||
| 49 | 'Value' => $amount, |
||
| 50 | 'Quantity' => $quantity, |
||
| 51 | 'RequestID' => $requestID, |
||
| 52 | 'CallBackURL' => $callbackUrl |
||
| 53 | ]); |
||
| 54 | } |
||
| 55 | |||
| 57 |