mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes
This commit is contained in:
parent
8df7457c6a
commit
ea20555378
@ -96,11 +96,10 @@ class BACS
|
|||||||
'payment_method' => $request->token,
|
'payment_method' => $request->token,
|
||||||
'confirm' => true,
|
'confirm' => true,
|
||||||
];
|
];
|
||||||
$state['payment_intent'] = $this->stripe->createPaymentIntent($payment_intent_data);
|
|
||||||
$state = [
|
$state = [
|
||||||
'payment_hash' => $request->payment_hash,
|
'payment_hash' => $request->payment_hash,
|
||||||
|
'payment_intent' => $this->stripe->createPaymentIntent($payment_intent_data),
|
||||||
];
|
];
|
||||||
|
|
||||||
$state = array_merge($state, $request->all());
|
$state = array_merge($state, $request->all());
|
||||||
|
|
||||||
$state['customer'] = $state['payment_intent']->customer;
|
$state['customer'] = $state['payment_intent']->customer;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user