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