From 9925bbf753472f500c37e84a6fe2ace5bbbda8cf Mon Sep 17 00:00:00 2001 From: Mou Ikkai <45863583+Mou-Ikkai@users.noreply.github.com> Date: Wed, 30 Sep 2020 17:51:17 -0400 Subject: [PATCH] Update UIDTest.php --- tests/unit/Database/Validator/UIDTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Database/Validator/UIDTest.php b/tests/unit/Database/Validator/UIDTest.php index 158223b489..bc70451130 100644 --- a/tests/unit/Database/Validator/UIDTest.php +++ b/tests/unit/Database/Validator/UIDTest.php @@ -12,12 +12,12 @@ class UIDTest extends TestCase */ protected $object = null; - public function setUp() + public function setUp(): void { $this->object = new UID(); } - public function tearDown() + public function tearDown(): void { } @@ -27,4 +27,4 @@ class UIDTest extends TestCase $this->assertEquals($this->object->isValid('5f058a89258075f058a89258075f058t'), true); $this->assertEquals($this->object->isValid('5f058a89258075f058a89258075f058tx'), false); } -} \ No newline at end of file +}