woocommerce-paypal-payments/modules/ppcp-subscription/module.php

17 lines
279 B
PHP
Raw Normal View History

2020-07-28 12:27:42 +03:00
<?php
/**
* The module.
*
* @package Inpsyde\PayPalCommerce\Subscription
*/
2020-07-28 12:27:42 +03:00
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new SubscriptionModule();
2020-07-28 12:27:42 +03:00
};