Add paylater-configurator module

This commit is contained in:
Alex P 2023-12-21 09:55:57 +02:00
parent fc1b5e9a1e
commit ace58578a0
No known key found for this signature in database
GPG key ID: 54487A734A204D71
12 changed files with 2427 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?php
/**
* The Pay Later configurator module.
*
* @package WooCommerce\PayPalCommerce\PayLaterConfigurator
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\PayLaterConfigurator;
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new PayLaterConfiguratorModule();
};