Skip to content
Snippets Groups Projects
Commit 57bc9276 authored by Vadim Justus's avatar Vadim Justus
Browse files

Add 'setUp(): void' declaration for PhpUnit 9 compatibility

parent 48934969
Branches
Tags 1.3.0
No related merge requests found
......@@ -46,7 +46,7 @@ class TestCase extends \PHPUnit\Framework\TestCase
*/
protected $getFirstBlockByBlockEntry;
protected function setUp()
protected function setUp(): void
{
parent::setUp();
......@@ -67,7 +67,7 @@ class TestCase extends \PHPUnit\Framework\TestCase
->create(GetFirstBlockByBlockEntry::class);
}
protected function tearDown()
protected function tearDown(): void
{
parent::tearDown();
......
......@@ -24,7 +24,7 @@ class InstallMediaFilesTest extends TestCase
*/
protected $fileSystem;
protected function setUp()
protected function setUp(): void
{
parent::setUp();
......
......@@ -68,7 +68,7 @@ class TestCase extends \PHPUnit\Framework\TestCase
->create(GetFirstPageByPageEntry::class);
}
protected function tearDown()
protected function tearDown(): void
{
parent::tearDown();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment