mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Add WC gateway
This commit is contained in:
parent
02cc1aaad8
commit
311d513fbf
1 changed files with 18 additions and 0 deletions
18
modules/ppcp-googlepay/GooglePayGateway.php
Normal file
18
modules/ppcp-googlepay/GooglePayGateway.php
Normal 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';
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue