aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/help/controller
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/help/controller')
-rw-r--r--phpBB/phpbb/help/controller/controller.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/phpBB/phpbb/help/controller/controller.php b/phpBB/phpbb/help/controller/controller.php
index 743a9c7fde..29494205a9 100644
--- a/phpBB/phpbb/help/controller/controller.php
+++ b/phpBB/phpbb/help/controller/controller.php
@@ -21,9 +21,6 @@ abstract class controller
/** @var \phpbb\controller\helper */
protected $helper;
- /** @var \phpbb\event\dispatcher_interface */
- protected $dispatcher;
-
/** @var \phpbb\help\manager */
protected $manager;
@@ -43,17 +40,15 @@ abstract class controller
* Constructor
*
* @param \phpbb\controller\helper $helper
- * @param \phpbb\event\dispatcher_interface $dispatcher
* @param \phpbb\help\manager $manager
* @param \phpbb\template\template $template
* @param \phpbb\language\language $language
* @param string $root_path
* @param string $php_ext
*/
- public function __construct(\phpbb\controller\helper $helper, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\help\manager $manager, \phpbb\template\template $template, \phpbb\language\language $language, $root_path, $php_ext)
+ public function __construct(\phpbb\controller\helper $helper, \phpbb\help\manager $manager, \phpbb\template\template $template, \phpbb\language\language $language, $root_path, $php_ext)
{
$this->helper = $helper;
- $this->dispatcher = $dispatcher;
$this->manager = $manager;
$this->template = $template;
$this->language = $language;