woocommerce-paypal-payments/modules/ppcp-status-report/module.php
2021-07-20 14:56:37 +02:00

16 lines
301 B
PHP

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