aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/module_base.php
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-07-09 23:23:40 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-07-09 23:23:40 +0200
commite46689a0cdbb418673741234f55e843f1bdd8016 (patch)
tree091fb73f3f600fc4661177082807e4b86b4baa6d /phpBB/phpbb/install/module_base.php
parent4d2212a3c2c8528e6d2adde6c57090bf8e26ba7d (diff)
downloadforums-e46689a0cdbb418673741234f55e843f1bdd8016.tar
forums-e46689a0cdbb418673741234f55e843f1bdd8016.tar.gz
forums-e46689a0cdbb418673741234f55e843f1bdd8016.tar.bz2
forums-e46689a0cdbb418673741234f55e843f1bdd8016.tar.xz
forums-e46689a0cdbb418673741234f55e843f1bdd8016.zip
[ticket/13740] Remove service container from modules
PHPBB3-13740
Diffstat (limited to 'phpBB/phpbb/install/module_base.php')
-rw-r--r--phpBB/phpbb/install/module_base.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/phpBB/phpbb/install/module_base.php b/phpBB/phpbb/install/module_base.php
index eb04379f8e..60eaa79139 100644
--- a/phpBB/phpbb/install/module_base.php
+++ b/phpBB/phpbb/install/module_base.php
@@ -17,7 +17,6 @@ use phpbb\di\ordered_service_collection;
use phpbb\install\exception\resource_limit_reached_exception;
use phpbb\install\helper\config;
use phpbb\install\helper\iohandler\iohandler_interface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Base class for installer module
@@ -78,13 +77,11 @@ abstract class module_base implements module_interface
/**
* Dependency getter
*
- * @param ContainerInterface $container
* @param config $config
* @param iohandler_interface $iohandler
*/
- public function setup(ContainerInterface $container, config $config, iohandler_interface $iohandler)
+ public function setup(config $config, iohandler_interface $iohandler)
{
- $this->container = $container;
$this->install_config = $config;
$this->iohandler = $iohandler;
}
@@ -196,9 +193,9 @@ abstract class module_base implements module_interface
}
/**
- * Returns the next task's index
+ * Returns the next task's name
*
- * @return string index of the array element of the next task
+ * @return string Index of the array element of the next task
*/
protected function recover_progress()
{