Skip to content
Code-Schnipsel Gruppen Projekte
AbstractRecurringBrowserPay.php 671 B
Newer Older
<?php

namespace QUI\ERP\Payments\Stripe\PaymentMethods\Recurring;

use QUI\ERP\Payments\Stripe\Provider;

/**
 * Class AbstractRecurringBrowserPay
 *
 * Stripe payment via Browser (includes GooglePay, ApplePay, Microsoft Pay, Browser Payment Request API)
 */
abstract class AbstractRecurringBrowserPay extends AbstractBaseRecurringPayment
{
    /**
     * Get type of Browser this BrowserPay works with
     *
    abstract public function getBrowserTypes();

    /**
     * Get type string of Stripe PaymentMethod
     *
     * @return string
     */
    public function getPaymentMethodType()
    {
        return 'browser_pay';
    }
}