1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-23 08:43:02 +02:00

[ticket/16345] Small improvements

PHPBB3-16346
This commit is contained in:
rubencm
2020-06-07 02:15:35 +00:00
parent 3cceeb45bf
commit 774c609c4a
284 changed files with 1380 additions and 835 deletions

View File

@@ -30,11 +30,6 @@ class add_modules extends \phpbb\install\task_base
*/
protected $db;
/**
* @var \phpbb\extension\manager
*/
protected $extension_manager;
/**
* @var \phpbb\install\helper\iohandler\iohandler_interface
*/
@@ -154,7 +149,6 @@ class add_modules extends \phpbb\install\task_base
{
$this->config = $config;
$this->db = $container->get('dbal.conn');
$this->extension_manager = $container->get('ext.manager');
$this->iohandler = $iohandler;
$this->module_manager = $container->get('module.manager');

View File

@@ -18,7 +18,6 @@ use phpbb\db\driver\driver_interface;
use phpbb\event\dispatcher;
use phpbb\config\config;
use phpbb\install\helper\container_factory;
use phpbb\language\language;
use phpbb\search\fulltext_native;
use phpbb\user;
@@ -44,11 +43,6 @@ class create_search_index extends \phpbb\install\task_base
*/
protected $phpbb_dispatcher;
/**
* @var language
*/
protected $language;
/**
* @var user
*/
@@ -78,7 +72,6 @@ class create_search_index extends \phpbb\install\task_base
$this->auth = $container->get('auth');
$this->config = $config;
$this->db = $container->get('dbal.conn');
$this->language = $container->get('language');
$this->phpbb_dispatcher = $container->get('dispatcher');
$this->user = $container->get('user');