Add save payment methods module boilerplate

This commit is contained in:
Emili Castells Guasch 2023-10-17 15:11:48 +02:00
parent aa6c87b08d
commit 17b43ca182
13 changed files with 2425 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?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();
};