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

17 lines
312 B
PHP
Raw Normal View History

<?php
/**
* The logging module.
*
2020-09-11 14:11:10 +03:00
* @package WooCommerce\WooCommerce\Logging
*/
declare(strict_types=1);
2020-07-01 13:03:21 +03:00
2020-09-11 14:11:10 +03:00
namespace WooCommerce\WooCommerce\Logging;
2020-07-01 13:03:21 +03:00
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
2020-07-01 13:03:21 +03:00
return function (): ModuleInterface {
2020-09-03 07:05:50 +03:00
return new WooCommerceLoggingModule();
2020-07-01 13:03:21 +03:00
};