mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
17 lines
360 B
PHP
17 lines
360 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The save payment methods module.
|
||
|
*
|
||
|
* @package WooCommerce\PayPalCommerce\SavePaymentMethods
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace WooCommerce\PayPalCommerce\SavePaymentMethods;
|
||
|
|
||
|
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
|
||
|
|
||
|
return static function (): ModuleInterface {
|
||
|
return new SavePaymentMethodsModule();
|
||
|
};
|