woocommerce-paypal-payments/modules/woocommerce-logging/module.php
2020-09-03 07:05:50 +03:00

16 lines
270 B
PHP

<?php
/**
* The logging module.
*
* @package Inpsyde\WooCommerce\Logging
*/
declare(strict_types=1);
namespace Inpsyde\WooCommerce\Logging;
use Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
return new WooCommerceLoggingModule();
};