Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function createSale($amount, $paymentNonce, $deviceDataFromTheClient) |
||
37 | { |
||
38 | return $this->gateway->transaction()->sale([ |
||
39 | 'amount' => $amount, |
||
40 | 'paymentMethodNonce' => $paymentNonce, |
||
41 | 'deviceData' => $deviceDataFromTheClient, |
||
42 | 'options' => [ |
||
43 | 'submitForSettlement' => false |
||
44 | ] |
||
45 | ]); |
||
46 | } |
||
47 | |||
68 |