From 331a5a30f2a0bef7ae6d6333ef404e7b42f4ada7 Mon Sep 17 00:00:00 2001 From: Remco Tolsma <869674+remcotolsma@users.noreply.github.com> Date: Mon, 12 Feb 2024 20:42:46 +0100 Subject: [PATCH] Add constant for the TWINT method. --- src/Methods.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Methods.php b/src/Methods.php index a852bd4..f5bd18a 100644 --- a/src/Methods.php +++ b/src/Methods.php @@ -160,4 +160,12 @@ class Methods { * @var string */ const IN3 = 'in3'; + + /** + * Constant for the TWINT method. + * + * @link https://www.mollie.com/payments/twint + * @var string + */ + const TWINT = 'twint'; }