2020-04-02 08:38:00 +03:00
|
|
|
<?php
|
2020-04-28 15:08:27 +03:00
|
|
|
|
2020-04-02 08:38:00 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Inpsyde\PayPalCommerce;
|
|
|
|
|
|
|
|
use Dhii\Container\ServiceProvider;
|
|
|
|
use Dhii\Modular\Module\ModuleInterface;
|
|
|
|
use Interop\Container\ServiceProviderInterface;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
class PluginModule implements ModuleInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setup(): ServiceProviderInterface
|
|
|
|
{
|
|
|
|
return new ServiceProvider([], []);
|
|
|
|
}
|
|
|
|
|
2020-04-06 11:16:18 +03:00
|
|
|
public function run(ContainerInterface $container)
|
2020-04-02 08:38:00 +03:00
|
|
|
{
|
|
|
|
// TODO: Implement run() method.
|
|
|
|
}
|
2020-04-06 11:16:18 +03:00
|
|
|
}
|