woocommerce-paypal-payments/modules.local/woocommerce-logging/module.php
2020-08-27 12:31:16 +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();
};