Add WC gateway

This commit is contained in:
Emili Castells Guasch 2024-07-15 11:40:09 +02:00
parent 02cc1aaad8
commit 311d513fbf

View file

@ -0,0 +1,18 @@
<?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';
}