BECSMandateForm.php
4 years ago
CanSetupStripeApp.php
4 years ago
CheckoutInstructions.php
4 years ago
CheckoutModal.php
1 week ago
CheckoutRedirect.php
2 years ago
CreditCardForm.php
4 years ago
FormFieldMarkup.php
4 years ago
HandlePaymentIntentStatus.php
3 years ago
SEPAMandateForm.php
3 years ago
CanSetupStripeApp.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\PaymentGateways\Gateways\Stripe\Traits; |
| 4 | |
| 5 | use Stripe\Stripe; |
| 6 | |
| 7 | /** |
| 8 | * @since 2.21.0 |
| 9 | */ |
| 10 | trait CanSetupStripeApp |
| 11 | { |
| 12 | /** |
| 13 | * @since 2.21.0 |
| 14 | * |
| 15 | * @param int $formId |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | protected function setupStripeApp(int $formId) |
| 20 | { |
| 21 | $stripeApiVersion = '2019-05-16'; |
| 22 | |
| 23 | Stripe::setApiVersion($stripeApiVersion); |
| 24 | give_stripe_set_app_info($formId); |
| 25 | } |
| 26 | } |
| 27 |