Add vaulting module

This commit is contained in:
dinamiko 2021-09-16 10:21:31 +02:00
parent dbec1c0e32
commit 08ab8ef404
5 changed files with 105 additions and 0 deletions

View 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();
};