aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/lib/classes/NotificationCenterTest.php
diff options
context:
space:
mode:
authormlunzena <lunzenauer@elan-ev.de>2021-08-18 10:19:43 +0200
committermlunzena <lunzenauer@elan-ev.de>2021-08-18 10:22:01 +0200
commit607b1e07f0768227066e528a3792eaedaec941aa (patch)
tree94dbaaccd2e39f7064b0248c74eff1292b12abd0 /tests/unit/lib/classes/NotificationCenterTest.php
parentcf997f4c7d1fc0474fea242c6d4e9206a0bc3521 (diff)
update Codeception and phpunit, refs #81
Diffstat (limited to 'tests/unit/lib/classes/NotificationCenterTest.php')
-rw-r--r--tests/unit/lib/classes/NotificationCenterTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/lib/classes/NotificationCenterTest.php b/tests/unit/lib/classes/NotificationCenterTest.php
index 83d0cbb..687183e 100644
--- a/tests/unit/lib/classes/NotificationCenterTest.php
+++ b/tests/unit/lib/classes/NotificationCenterTest.php
@@ -33,7 +33,7 @@ class NotificationCenterTestSoundexPredicate
class NotificationCenterTest extends \Codeception\Test\Unit
{
- public function setUp()
+ public function setUp(): void
{
$this->observer = $this->createMock("Observer");
$this->subject = new stdClass();
@@ -50,7 +50,7 @@ class NotificationCenterTest extends \Codeception\Test\Unit
NotificationCenter::addObserver($this->observer, 'update', 'Namespaced\\SormDidUpdate', $this->subject);
}
- public function tearDown()
+ public function tearDown(): void
{
NotificationCenter::removeObserver($this->observer);
}