mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/14948] Adjust calls for twig and phpunit updates
PHPBB3-14948
This commit is contained in:
@@ -30,7 +30,7 @@ class phpbb_extension_extension_base_test extends phpbb_test_case
|
||||
self::$reflection_method_get_migration_file_list->setAccessible(true);
|
||||
}
|
||||
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$migrator = new phpbb_mock_migrator();
|
||||
|
@@ -18,7 +18,7 @@ class phpbb_extension_finder_test extends phpbb_test_case
|
||||
/** @var \phpbb\finder */
|
||||
protected $finder;
|
||||
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->extension_manager = new phpbb_mock_extension_manager(
|
||||
dirname(__FILE__) . '/',
|
||||
|
@@ -26,7 +26,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
|
||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/extensions.xml');
|
||||
}
|
||||
|
||||
protected function setUp()
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
@@ -32,7 +32,7 @@ class phpbb_extension_metadata_manager_test extends phpbb_database_test_case
|
||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/extensions.xml');
|
||||
}
|
||||
|
||||
protected function setUp()
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
@@ -24,7 +24,7 @@ class phpbb_extension_modules_test extends phpbb_test_case
|
||||
protected $finder;
|
||||
protected $module_manager;
|
||||
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
global $phpbb_extension_manager;
|
||||
|
||||
|
Reference in New Issue
Block a user