mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
15 lines
246 B
PHP
15 lines
246 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The Settings module.
|
||
|
*
|
||
|
* @package WooCommerce\PayPalCommerce\Settings
|
||
|
*/
|
||
|
|
||
|
declare( strict_types = 1 );
|
||
|
|
||
|
namespace WooCommerce\PayPalCommerce\Settings;
|
||
|
|
||
|
return static function () : SettingsModule {
|
||
|
return new SettingsModule();
|
||
|
};
|