This commit is contained in:
David Remer 2020-08-27 11:08:36 +03:00
parent 61d24eede6
commit cfbd3ae428
52 changed files with 3985 additions and 4147 deletions

View file

@ -9,16 +9,14 @@ use Dhii\Modular\Module\ModuleInterface;
use Interop\Container\ServiceProviderInterface;
use Psr\Container\ContainerInterface;
class PluginModule implements ModuleInterface
{
class PluginModule implements ModuleInterface {
public function setup(): ServiceProviderInterface
{
return new ServiceProvider([], []);
}
public function run(ContainerInterface $container)
{
// TODO: Implement run() method.
}
public function setup(): ServiceProviderInterface {
return new ServiceProvider( array(), array() );
}
public function run( ContainerInterface $container ) {
// TODO: Implement run() method.
}
}