1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-14 13:46:33 +02:00

[ticket/16593] Define params in the constructor

PHPBB3-16593
This commit is contained in:
Jakub Senko
2020-09-30 13:17:16 +02:00
parent 5df37895d8
commit b494e6b043

View File

@ -81,6 +81,8 @@ class create_search_index extends \phpbb\install\task_base
$this->language = $container->get('language'); $this->language = $container->get('language');
$this->phpbb_dispatcher = $container->get('dispatcher'); $this->phpbb_dispatcher = $container->get('dispatcher');
$this->user = $container->get('user'); $this->user = $container->get('user');
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;
parent::__construct(true); parent::__construct(true);
} }