Skip to content

Commit bb26352

Browse files
committed
Fix method signatures
1 parent 02b8c98 commit bb26352

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/www/IndexTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class IndexTest extends TestCase
4545
/**
4646
* The setup method that is run before any tests in this class.
4747
*/
48-
protected static function setupBeforeClass(): void
48+
public static function setupBeforeClass(): void
4949
{
5050
self::$server = new BuiltInServer('configLoader');
5151
self::$server_addr = self::$server->start();
@@ -133,7 +133,7 @@ public function testRedirectionFrontpageRedirectOption(): void
133133
/**
134134
* The tear down method that is executed after all tests in this class.
135135
*/
136-
protected static function tearDownAfterClass(): void
136+
public static function tearDownAfterClass(): void
137137
{
138138
unlink(self::$shared_file);
139139
self::$server->stop();

0 commit comments

Comments
 (0)