From fe2cd13397cb777b67b2f91fc3e8d33d1937babe Mon Sep 17 00:00:00 2001 From: Remco Tolsma <869674+remcotolsma@users.noreply.github.com> Date: Thu, 23 May 2024 21:19:25 +0200 Subject: [PATCH] Register payment method MyBank. --- src/Plugin.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Plugin.php b/src/Plugin.php index 2a0355b5..2cc50faa 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -666,6 +666,11 @@ public function __construct( $args = [] ) { $this->payment_methods->add( $payment_method_mb_way ); + // MyBank. + $payment_method_mybank = new PaymentMethod( PaymentMethods::MYBANK ); + + $this->payment_methods->add( $payment_method_mybank ); + // Payconiq. $payment_method_payconiq = new PaymentMethod( PaymentMethods::PAYCONIQ );