mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
17 lines
284 B
PHP
17 lines
284 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The vaulting module.
|
||
|
*
|
||
|
* @package WooCommerce\PayPalCommerce\Vaulting
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace WooCommerce\PayPalCommerce\Vaulting;
|
||
|
|
||
|
use Dhii\Modular\Module\ModuleInterface;
|
||
|
|
||
|
return static function (): ModuleInterface {
|
||
|
return new VaultingModule();
|
||
|
};
|