Skip to content

Commit

Permalink
Merge pull request #726 from timm-oh/tim.mccarthy/feature-add-new-pay…
Browse files Browse the repository at this point in the history
…ment-constant

NTR: Add riverty payment method type
  • Loading branch information
Naoray authored Jun 24, 2024
2 parents a3c383a + d36e3de commit 5c29df8
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions src/Types/PaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ class PaymentMethod
*/
public const GIROPAY = "giropay";

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

/**
* @link https://www.mollie.com/en/payments/ideal
*/
Expand Down Expand Up @@ -126,31 +131,31 @@ class PaymentMethod
*/
public const PAYSAFECARD = "paysafecard";

/**
* @link https://www.mollie.com/en/payments/przelewy24
*/
public const PRZELEWY24 = 'przelewy24';

/**
* @deprecated
* @link https://www.mollie.com/en/payments/gift-cards
*/
public const PODIUMCADEAUKAART = "podiumcadeaukaart";

/**
* @link https://www.mollie.com/en/payments/sofort
* @link https://docs.mollie.com/point-of-sale/overview
*/
public const SOFORT = "sofort";
public const POINT_OF_SALE = "pointofsale";

/**
* @link https://www.mollie.com/en/payments/in3
* @link https://www.mollie.com/en/payments/przelewy24
*/
public const IN3 = "in3";
public const PRZELEWY24 = 'przelewy24';

/**
* @link https://docs.mollie.com/point-of-sale/overview
* @link https://www.mollie.com/en/payments/sofort
*/
public const POINT_OF_SALE = "pointofsale";
public const SOFORT = "sofort";

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

/**
* @link https://www.mollie.com/en/payments/twint
Expand Down

0 comments on commit 5c29df8

Please sign in to comment.