Merge pull request #6054 from senky/ticket/16593

[ticket/16593] Define params in the constructor
This commit is contained in:
Marc Alexander 2020-10-08 21:18:47 +02:00
commit c694e86422
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

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);
} }