mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
14 lines
245 B
PHP
14 lines
245 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();
|
|
};
|