1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-05 18:52:44 +01:00

Working on credit card auth response

This commit is contained in:
David Bomba 2019-09-16 21:16:20 +10:00
parent 662aa3aed1
commit 3ff6dd4472

View File

@ -26,6 +26,17 @@ class StripePaymentDriver extends BasePaymentDriver
protected $customer_reference = 'customerReferenceParam';
/**
* Payments
* \Stripe\PaymentIntent::create([
'payment_method_types' => ['card'],
'amount' => 1099,
'currency' => 'aud',
'customer' => 'cus_Fow2nmVJX1EsQw',
'payment_method' => 'card_1FJIAjKmol8YQE9DxWb9kMpR',
]);
*/
/**
* Methods in this class are divided into