1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 12:14:06 +02:00

[ticket/16643] Fixes

PHPBB3-16643
This commit is contained in:
Máté Bartus
2021-02-01 22:09:15 +01:00
parent 0f7b89838a
commit 1ce97fe8ea
5 changed files with 11 additions and 14 deletions

View File

@@ -29,14 +29,10 @@ use phpbb\install\helper\iohandler\iohandler_interface;
*/
abstract class database_task extends task_base
{
/**
* @var Connection
*/
/** @var Connection */
private $conn;
/**
* @var iohandler_interface
*/
/** @var iohandler_interface */
private $io;
/**

View File

@@ -68,7 +68,7 @@ class add_default_data extends database_task
language $language,
string $root_path)
{
$this->db = self::get_doctrine_connection($db_helper, $config);
$this->db = self::get_doctrine_connection($db_helper, $config);
$this->database_helper = $db_helper;
$this->config = $config;
$this->language = $language;