woocommerce-paypal-payments/modules/ppcp-compat/module.php
2021-07-15 07:06:22 -05:00

16 lines
283 B
PHP

<?php
/**
* The compatibility module.
*
* @package WooCommerce\PayPalCommerce\Compat
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Compat;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new CompatModule();
};