Add empty ApplePay gateway class

This commit is contained in:
Philipp Stracker 2024-07-22 13:30:20 +02:00
parent 8b5165ddfc
commit 10439ff02b
No known key found for this signature in database

View 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';
}