From bce17a6fd653f0ddfce7cf3a9b85ef98edd70d14 Mon Sep 17 00:00:00 2001 From: Mou Ikkai <45863583+Mou-Ikkai@users.noreply.github.com> Date: Wed, 30 Sep 2020 17:48:21 -0400 Subject: [PATCH] Update PasswordTest.php --- tests/unit/Auth/Validator/PasswordTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Auth/Validator/PasswordTest.php b/tests/unit/Auth/Validator/PasswordTest.php index 0e07e6c102..26972c74f5 100644 --- a/tests/unit/Auth/Validator/PasswordTest.php +++ b/tests/unit/Auth/Validator/PasswordTest.php @@ -12,12 +12,12 @@ class PasswordTestTest extends TestCase */ protected $object = null; - public function setUp() + public function setUp(): void { $this->object = new Password(); } - public function tearDown() + public function tearDown(): void { } @@ -36,4 +36,4 @@ class PasswordTestTest extends TestCase $this->assertEquals($this->object->isValid('WUnOZcn0piQMN8Mh31xw4KQPF0gcNGVA'), true); $this->assertEquals($this->object->isValid('WUnOZcn0piQMN8Mh31xw4KQPF0gcNGVAx'), false); } -} \ No newline at end of file +}