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

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander
2022-01-31 20:55:15 +01:00
8 changed files with 1 additions and 54 deletions

View File

@@ -87,7 +87,6 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
$this->db,
$this->config,
$finder_factory,
new phpbb_mock_dummy_router(),
'phpbb_ext',
__DIR__ . '/../../phpBB/',
null

View File

@@ -186,7 +186,6 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
$db,
$config,
$finder_factory,
new phpbb_mock_dummy_router(),
'phpbb_ext',
__DIR__ . '/',
($with_cache) ? new \phpbb\cache\service(new phpbb_mock_cache(), $config, $db, $phpbb_root_path, $php_ext) : null

View File

@@ -101,7 +101,6 @@ class phpbb_extension_metadata_manager_test extends phpbb_database_test_case
$this->db,
$this->config,
$finder_factory,
new phpbb_mock_dummy_router(),
'phpbb_ext',
$this->phpbb_root_path,
$this->cache

View File

@@ -24,6 +24,5 @@ class phpbb_mock_extension_manager extends \phpbb\extension\manager
$this->container = $container;
$this->config = new \phpbb\config\config(array());
$this->finder_factory = new \phpbb\finder\factory(null, false, $this->phpbb_root_path, $phpEx);
$this->router = new phpbb_mock_dummy_router();
}
}

View File

@@ -276,7 +276,6 @@ class phpbb_functional_test_case extends phpbb_test_case
$db,
$config,
$finder_factory,
new phpbb_mock_dummy_router(),
self::$config['table_prefix'] . 'ext',
__DIR__ . '/',
new \phpbb\cache\service($this->get_cache_driver(), $config, $this->db, $phpbb_root_path, $phpEx)