From 62b58df7ab4a0758381e50a8d406d90bc2a9209c Mon Sep 17 00:00:00 2001 From: Johannes Ackermann Date: Mon, 12 Jul 2021 18:53:24 +0200 Subject: [PATCH] Small change to maintain Testing lib 8 compat. --- Tests/Unit/Core/EventsTest.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Tests/Unit/Core/EventsTest.php b/Tests/Unit/Core/EventsTest.php index e47dabf..cc47950 100644 --- a/Tests/Unit/Core/EventsTest.php +++ b/Tests/Unit/Core/EventsTest.php @@ -23,7 +23,7 @@ class EventsTest extends UnitTestCase /** * Will be fired every time before executing a test method. */ - protected function setUp() + protected function setUp(): void { parent::setUp(); } @@ -31,12 +31,10 @@ protected function 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(); }