mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
✨ Add empty ApplePay gateway class
This commit is contained in:
parent
8b5165ddfc
commit
10439ff02b
1 changed files with 20 additions and 0 deletions
20
modules/ppcp-applepay/ApplePayGateway.php
Normal file
20
modules/ppcp-applepay/ApplePayGateway.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
/**
|
||||
* The Apple Pay Payment Gateway
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce\Applepay
|
||||
*/
|
||||
|
||||
declare( strict_types = 1 );
|
||||
|
||||
namespace WooCommerce\PayPalCommerce\Applepay;
|
||||
|
||||
use WC_Payment_Gateway;
|
||||
|
||||
/**
|
||||
* Class ApplePayGateway
|
||||
*/
|
||||
class ApplePayGateway extends WC_Payment_Gateway {
|
||||
const ID = 'ppcp-applepay';
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue