Skip to content

Commit

Permalink
Small change to maintain Testing lib 8 compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-ackermann committed Jul 12, 2021
1 parent 97157ec commit 62b58df
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Tests/Unit/Core/EventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,18 @@ class EventsTest extends UnitTestCase
/**
* Will be fired every time before executing a test method.
*/
protected function setUp()
protected function setUp(): void
{
parent::setUp();
}

/**
* Will be fired every time after executing a test method.
*/
public function tearDown()
public function tearDown(): void
{
// Your test code coes here...


// Parent call
// Your test code goes here...
// Parent call
parent::tearDown();
}

Expand Down

0 comments on commit 62b58df

Please sign in to comment.