1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +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 d7cb104fc1
commit 3d87d61dae
17 changed files with 25 additions and 25 deletions

View File

@@ -24,7 +24,7 @@ class phpbb_cache_apcu_driver_test extends phpbb_cache_common_test_case
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/config.xml');
}
static public function setUpBeforeClass()
static public function setUpBeforeClass(): void
{
if (!extension_loaded('apcu'))
{

View File

@@ -22,7 +22,7 @@ class phpbb_cache_memcached_driver_test extends \phpbb_cache_common_test_case
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/config.xml');
}
static public function setUpBeforeClass()
static public function setUpBeforeClass(): void
{
if (!extension_loaded('memcached'))
{

View File

@@ -22,7 +22,7 @@ class phpbb_cache_redis_driver_test extends \phpbb_cache_common_test_case
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/config.xml');
}
static public function setUpBeforeClass()
static public function setUpBeforeClass(): void
{
if (!extension_loaded('redis'))
{