woocommerce-paypal-payments/modules/woocommerce-logging/module.php

17 lines
270 B
PHP
Raw Normal View History

<?php
/**
* The logging module.
*
* @package Inpsyde\Woocommerce\Logging
*/
declare(strict_types=1);
2020-07-01 13:03:21 +03:00
namespace Inpsyde\Woocommerce\Logging;
use Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
return new WoocommerceLoggingModule();
2020-07-01 13:03:21 +03:00
};