mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
Add vaulting module
This commit is contained in:
parent
dbec1c0e32
commit
08ab8ef404
5 changed files with 105 additions and 0 deletions
16
modules/ppcp-vaulting/module.php
Normal file
16
modules/ppcp-vaulting/module.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?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();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue