Skip to content

Commit

Permalink
Merge pull request #706 from mollie/feature/add-new-payment-method-co…
Browse files Browse the repository at this point in the history
…nstants

NTR: Add new payment method types
  • Loading branch information
sandervanhooft authored Jan 23, 2024
2 parents b54e0b0 + 2938b81 commit 6c76399
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 6c76399

Please sign in to comment.