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

17 lines
312 B
PHP
Raw Normal View History

2020-04-02 08:38:00 +03:00
<?php
2020-08-28 08:13:45 +03:00
/**
* The module.
*
2020-09-11 14:11:10 +03:00
* @package WooCommerce\PayPalCommerce\WcGateway
2020-08-28 08:13:45 +03:00
*/
2020-04-28 12:31:12 +03:00
2020-04-02 08:38:00 +03:00
declare(strict_types=1);
2020-09-11 14:11:10 +03:00
namespace WooCommerce\PayPalCommerce\WcGateway;
2020-04-02 08:38:00 +03:00
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
2020-04-02 08:38:00 +03:00
2020-04-28 12:31:12 +03:00
return static function (): ModuleInterface {
return new WCGatewayModule();
2020-04-06 11:16:18 +03:00
};