Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-wc-gateway
/
src
/
Gateway
:
Messages.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' ) ); } }