From b0e15123e3503f11a80ae08f757e3ffe6035b4fd Mon Sep 17 00:00:00 2001 From: Steve Jones Date: Mon, 4 Mar 2024 00:17:08 -0500 Subject: [PATCH] included - void --- tests/phpunit/test-plugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/test-plugin.php b/tests/phpunit/test-plugin.php index 7d1e648..b53b83f 100644 --- a/tests/phpunit/test-plugin.php +++ b/tests/phpunit/test-plugin.php @@ -22,7 +22,7 @@ class EDECU_Plugin_Test extends WP_UnitTestCase { /** * Test setup. */ - public function setUp() { + public function setUp(): void { parent::setUp(); $this->plugin = new Plugin(); } @@ -30,7 +30,7 @@ public function setUp() { /** * Test teardown. */ - public function tearDown() { + public function tearDown(): void { parent::tearDown(); unset( $this->plugin ); }