woocommerce-paypal-payments/modules/ppcp-wc-gateway/module.php

16 lines
278 B
PHP

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