1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12099] Remove config again

PHPBB3-12099
This commit is contained in:
Joas Schilling
2014-05-07 23:22:53 +02:00
committed by Tristan Darricau
parent 779d8a68ff
commit b7e1959d56
12 changed files with 5 additions and 19 deletions

View File

@@ -39,7 +39,6 @@ class phpbb_avatar_manager_test extends \phpbb_test_case
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
$config,
$phpbb_root_path,
$phpEx
);

View File

@@ -27,7 +27,6 @@ class phpbb_controller_helper_route_test extends phpbb_test_case
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$phpbb_root_path,
$phpEx
);

View File

@@ -51,7 +51,6 @@ class phpbb_extension_metadata_manager_test extends phpbb_database_test_case
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$this->phpbb_root_path,
$this->phpEx
),

View File

@@ -30,10 +30,11 @@ class phpbb_build_url_test extends phpbb_test_case
new phpbb_mock_request()
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
$phpbb_root_path,
'php'
);
$phpbb_container->set('path_helper', $path_helper);
$phpbb_container->set('path_helper', $phpbb_path_helper);
}
public function build_url_test_data()
{

View File

@@ -30,7 +30,6 @@ class phpbb_path_helper_test extends phpbb_test_case
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$this->phpbb_root_path,
'php'
);
@@ -161,7 +160,6 @@ class phpbb_path_helper_test extends phpbb_test_case
$symfony_request,
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$this->phpbb_root_path,
'php'
);

View File

@@ -64,7 +64,6 @@ class phpbb_security_redirect_test extends phpbb_security_test_base
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$this->phpbb_root_path,
'php'
);

View File

@@ -144,7 +144,6 @@ Zeta test event in all',
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$phpbb_root_path,
$phpEx
);

View File

@@ -73,7 +73,6 @@ class phpbb_template_template_test_case extends phpbb_test_case
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$phpbb_root_path,
$phpEx
);

View File

@@ -28,7 +28,6 @@ class phpbb_template_template_test_case_with_tree extends phpbb_template_templat
),
new \phpbb\filesystem(),
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$phpbb_root_path,
$phpEx
);

View File

@@ -33,7 +33,6 @@ abstract class phpbb_session_test_case extends phpbb_database_test_case
$symfony_request,
$phpbb_filesystem,
$this->getMock('\phpbb\request\request'),
new \phpbb\config\config(array()),
$phpbb_root_path,
$phpEx
);