woocommerce-paypal-payments/modules/ppcp-local-alternative-payment-methods/module.php
Emili Castells Guasch 7b22040710 Add module boilerplate
2024-08-08 12:43:29 +02:00

16 lines
409 B
PHP

<?php
/**
* The local alternative payment methods module.
*
* @package WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods;
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new LocalAlternativePaymentMethodsModule();
};