woocommerce-paypal-payments/modules/ppcp-googlepay/GooglePayGateway.php
Emili Castells Guasch 311d513fbf Add WC gateway
2024-07-15 11:40:09 +02:00

18 lines
287 B
PHP

<?php
/**
* The Google Pay Payment Gateway
*
* @package WooCommerce\PayPalCommerce\Googlepay
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Googlepay;
use WC_Payment_Gateway;
class GooglePayGateway extends WC_Payment_Gateway {
const ID = 'ppcp-googlepay';
}