woocommerce-paypal-payments/src/PluginModule.php
2022-02-17 18:18:33 +02:00

45 lines
777 B
PHP

<?php
/**
* The plugin module.
*
* @package WooCommerce\PayPalCommerce
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce;
use Dhii\Container\ServiceProvider;
use Dhii\Modular\Module\ModuleInterface;
use Interop\Container\ServiceProviderInterface;
use Psr\Container\ContainerInterface;
/**
* Class PluginModule
*/
class PluginModule implements ModuleInterface {
/**
* {@inheritDoc}
*/
public function setup(): ServiceProviderInterface {
return new ServiceProvider(
require __DIR__ . '/services.php',
require __DIR__ . '/extensions.php'
);
}
/**
* {@inheritDoc}
*/
public function run( ContainerInterface $c ): void {
}
/**
* Returns the key for the module.
*
* @return string|void
*/
public function getKey() {
}
}