File "Messages.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-wc-gateway/src/Gateway/Messages.php
File size: 576 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Common messages.
 *
 * @package WooCommerce\PayPalCommerce\WcGateway\Gateway
 */

declare(strict_types=1);

namespace WooCommerce\PayPalCommerce\WcGateway\Gateway;

/**
 * Class Messages
 */
class Messages {
	/**
	 * The generic payment failure message.
	 *
	 * @return string
	 */
	public static function generic_payment_error_message(): string {
		return apply_filters(
			'woocommerce_paypal_payments_generic_payment_error_message',
			__( 'Failed to process the payment. Please try again or contact the shop admin.', 'woocommerce-paypal-payments' )
		);
	}
}