woocommerce-paypal-payments/modules/ppcp-wc-subscriptions/module.php

17 lines
330 B
PHP
Raw Normal View History

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