diff --git a/src/Gateway.php b/src/Gateway.php index 2165559..71d9fd9 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -75,6 +75,7 @@ function() { $this->register_payment_method( new PaymentMethod( PaymentMethods::KLARNA_PAY_LATER ) ); $this->register_payment_method( new PaymentMethod( PaymentMethods::MAESTRO ) ); $this->register_payment_method( new PaymentMethod( PaymentMethods::PAYPAL ) ); + $this->register_payment_method( new PaymentMethod( PaymentMethods::RIVERTY ) ); $this->register_payment_method( new PaymentMethod( PaymentMethods::SOFORT ) ); $this->register_payment_method( new PaymentMethod( PaymentMethods::SPRAYPAY ) ); } diff --git a/src/Methods.php b/src/Methods.php index afc0f42..3c2a0b8 100644 --- a/src/Methods.php +++ b/src/Methods.php @@ -168,6 +168,7 @@ class Methods { PaymentMethods::MISTER_CASH => self::BANCONTACT, PaymentMethods::MAESTRO => self::MAESTRO, PaymentMethods::PAYPAL => self::PAYPAL, + PaymentMethods::RIVERTY => self::AFTERPAY, PaymentMethods::SOFORT => self::SOFORT, PaymentMethods::SPRAYPAY => self::SPRAYPAY, ];