woocommerce-paypal-payments/modules/ppcp-paypal-subscriptions/module.php
Pedro Silva 429232f60f
Refactor remaining modules to Modularity.
Remove Dhii dependencies.
2023-12-19 17:26:09 +00:00

14 lines
296 B
PHP

<?php
/**
* The PayPalSubscriptions module.
*
* @package WooCommerce\PayPalCommerce\PayPalSubscriptions
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\PayPalSubscriptions;
return static function (): PayPalSubscriptionsModule {
return new PayPalSubscriptionsModule();
};