woocommerce-paypal-payments/modules/ppcp-compat/module.php

17 lines
283 B
PHP
Raw Normal View History

2021-07-15 06:51:37 -05:00
<?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();
};