mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
25 lines
553 B
PHP
25 lines
553 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Inpsyde\PayPalCommerce;
|
||
|
|
||
|
|
||
|
use Dhii\Container\ServiceProvider;
|
||
|
use Dhii\Modular\Module\Exception\ModuleExceptionInterface;
|
||
|
use Dhii\Modular\Module\ModuleInterface;
|
||
|
use Interop\Container\ServiceProviderInterface;
|
||
|
use Psr\Container\ContainerInterface;
|
||
|
|
||
|
class PluginModule implements ModuleInterface
|
||
|
{
|
||
|
|
||
|
public function setup(): ServiceProviderInterface
|
||
|
{
|
||
|
return new ServiceProvider([], []);
|
||
|
}
|
||
|
|
||
|
public function run(ContainerInterface $c)
|
||
|
{
|
||
|
// TODO: Implement run() method.
|
||
|
}
|
||
|
}
|