mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
Add apple to onboarding products, add setting to onboard with a new filter add settings to enable in product and cart add button markup where the js will hook enqueue scripts echo validation file sandbox/live init apple payment method for onboarding
16 lines
318 B
PHP
16 lines
318 B
PHP
<?php
|
|
/**
|
|
* The Applepay module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Applepay
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Applepay;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
|
|
|
|
return static function (): ModuleInterface {
|
|
return new ApplepayModule();
|
|
};
|