mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/16549] Add void return type of template methods
PHPBB3-16549
This commit is contained in:
@@ -54,7 +54,7 @@ abstract class phpbb_database_test_case extends TestCase
|
||||
return array();
|
||||
}
|
||||
|
||||
static public function setUpBeforeClass()
|
||||
static public function setUpBeforeClass(): void
|
||||
{
|
||||
global $phpbb_root_path, $phpEx;
|
||||
|
||||
@@ -91,7 +91,7 @@ abstract class phpbb_database_test_case extends TestCase
|
||||
parent::setUpBeforeClass();
|
||||
}
|
||||
|
||||
static public function tearDownAfterClass()
|
||||
static public function tearDownAfterClass(): void
|
||||
{
|
||||
if (file_exists(self::$install_schema_file))
|
||||
{
|
||||
|
Reference in New Issue
Block a user