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

15 lines
245 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
return function (): WooCommerceLoggingModule {
2020-09-03 07:05:50 +03:00
return new WooCommerceLoggingModule();
2020-07-01 13:03:21 +03:00
};