mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-25 01:02:18 +08:00
13 lines
318 B
PHP
13 lines
318 B
PHP
<?php
|
|
|
|
/**
|
|
* The uninstall module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Uninstall
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\Uninstall;
|
|
|
|
return function (): \WooCommerce\PayPalCommerce\Uninstall\UninstallModule {
|
|
return new \WooCommerce\PayPalCommerce\Uninstall\UninstallModule();
|
|
};
|