mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
16 lines
279 B
PHP
16 lines
279 B
PHP
<?php
|
|
/**
|
|
* The module.
|
|
*
|
|
* @package Inpsyde\PayPalCommerce\Subscription
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Inpsyde\PayPalCommerce\Subscription;
|
|
|
|
use Dhii\Modular\Module\ModuleInterface;
|
|
|
|
return static function (): ModuleInterface {
|
|
return new SubscriptionModule();
|
|
};
|