woocommerce-paypal-payments/modules/ppcp-uninstall/module.php
Pedro Silva 429232f60f
Refactor remaining modules to Modularity.
Remove Dhii dependencies.
2023-12-19 17:26:09 +00:00

14 lines
239 B
PHP

<?php
/**
* The uninstall module.
*
* @package WooCommerce\PayPalCommerce\Uninstall
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Uninstall;
return function (): UninstallModule {
return new UninstallModule();
};