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

[ticket/16549] Add void return type of template methods

PHPBB3-16549
This commit is contained in:
rxu
2020-07-13 14:06:04 +07:00
parent 58ea656fd8
commit fb62d22013
19 changed files with 27 additions and 27 deletions

View File

@@ -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))
{

View File

@@ -42,7 +42,7 @@ class phpbb_functional_test_case extends phpbb_test_case
static protected $already_installed = false;
static protected $last_post_timestamp = 0;
static public function setUpBeforeClass()
static public function setUpBeforeClass(): void
{
parent::setUpBeforeClass();