downgrade dhii/module-interface to 0.1

This commit is contained in:
David Remer 2020-09-16 10:18:45 +03:00
parent c09e314baa
commit ddd4f5ba09
11 changed files with 102 additions and 21 deletions

View file

@ -29,9 +29,16 @@ class PluginModule implements ModuleInterface {
/**
* Runs the module.
*
* @param ContainerInterface $container The Container.
* @param ContainerInterface|null $container The Container.
*/
public function run( ContainerInterface $container ) {
// TODO: Implement run() method.
public function run( ContainerInterface $container = null ) {
}
/**
* Returns the key for the module.
*
* @return string|void
*/
public function getKey() {
}
}