woocommerce-paypal-payments/modules/woocommerce-logging/src/WooCommerceLoggingModule.php

51 lines
934 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-09-11 14:11:10 +03:00
namespace WooCommerce\WooCommerce\Logging;
use Dhii\Container\ServiceProvider;
use Dhii\Modular\Module\ModuleInterface;
use Interop\Container\ServiceProviderInterface;
use Psr\Container\ContainerInterface;
/**
2020-09-03 07:05:50 +03:00
* Class WooCommerceLoggingModule
*/
2020-09-03 07:05:50 +03:00
class WooCommerceLoggingModule implements ModuleInterface {
/**
* Setup the module.
*
* @return ServiceProviderInterface
*/
public function setup(): ServiceProviderInterface {
return new ServiceProvider(
require __DIR__ . '/../services.php',
require __DIR__ . '/../extensions.php'
);
}
/**
* Run the module.
*
* @param ContainerInterface $container The container.
*/
public function run( ContainerInterface $container ): void {
2020-09-16 10:18:45 +03:00
}
/**
* Returns the key for the module.
*
* @return string|void
*/
public function getKey() {
}
}