PaymentExtensions.php 371 B

1234567891011121314
  1. <?php
  2. namespace App\Classes;
  3. use App\Models\Payment;
  4. use App\Models\ShopProduct;
  5. abstract class PaymentExtension extends AbstractExtension
  6. {
  7. /**
  8. * Returns the redirect url of the payment gateway to redirect the user to
  9. */
  10. abstract public static function getRedirectUrl(Payment $payment, ShopProduct $shopProduct, string $totalPriceString): string;
  11. }