stripe_id = self::PAYMENT_METHOD_STRIPE_ID; $this->title = 'Sofort'; $this->is_reusable = false; $this->currencies = [ Currency_Code::EURO ]; $this->icon_url = plugins_url( 'assets/images/payment-methods/sofort.svg', WCPAY_PLUGIN_FILE ); $this->countries = [ Country_Code::AUSTRIA, Country_Code::BELGIUM, Country_Code::GERMANY, Country_Code::NETHERLANDS, Country_Code::SPAIN ]; } /** * Returns testing credentials to be printed at checkout in test mode. * * @param string $account_country The country of the account. * @return string */ public function get_testing_instructions( string $account_country ) { return ''; } }