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 +}