woocommerce-paypal-payments/modules/woocommerce-logging/module.php
2020-09-01 14:21:58 +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();
};