This commit is contained in:
David Remer 2020-04-02 08:38:00 +03:00
parent ba97d7143d
commit 779eb31e4e
53 changed files with 8475 additions and 0 deletions

25
src/PluginModule.php Normal file
View file

@ -0,0 +1,25 @@
<?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.
}
}