Skip to content

Commit

Permalink
NTR: Add new payment method types
Browse files Browse the repository at this point in the history
  • Loading branch information
fjbender committed Jan 23, 2024
1 parent b54e0b0 commit 2938b81
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Types/PaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@

class PaymentMethod
{
/**
* @link https://www.mollie.com/en/payments/alma
*/
public const ALMA = "alma";

/**
* @link https://www.mollie.com/en/payments/applepay
*/
public const APPLEPAY = "applepay";

/**
* @link https://www.mollie.com/en/payments/bancomatpay
*/
public const BANCOMATPAY = "bancomatpay";

/**
* @link https://www.mollie.com/en/payments/bancontact
*/
Expand All @@ -34,6 +44,11 @@ class PaymentMethod
*/
public const BITCOIN = "bitcoin";

/**
* @link https://www.mollie.com/en/payments/blik
*/
public const BLIK = "blik";

/**
* @link https://www.mollie.com/en/payments/credit-card
*/
Expand Down

0 comments on commit 2938b81

Please sign in to comment.