codingstandards src/

This commit is contained in:
David Remer 2020-08-31 13:08:27 +03:00
parent a35d103111
commit 42930b48be
3 changed files with 23 additions and 2 deletions

View file

@ -1,22 +0,0 @@
<?php
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( array(), array() );
}
public function run( ContainerInterface $container ) {
// TODO: Implement run() method.
}
}