mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
19 lines
287 B
PHP
19 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';
|
||
|
|
||
|
|
||
|
}
|