From 6a6b3738e4f4fbffb0e351fbc0b290a6ba50d8bc Mon Sep 17 00:00:00 2001 From: Mou Ikkai <45863583+Mou-Ikkai@users.noreply.github.com> Date: Wed, 30 Sep 2020 17:52:53 -0400 Subject: [PATCH] Update CNAMETest.php --- tests/unit/Network/Validators/CNAMETest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Network/Validators/CNAMETest.php b/tests/unit/Network/Validators/CNAMETest.php index 003455baf1..d08656d847 100644 --- a/tests/unit/Network/Validators/CNAMETest.php +++ b/tests/unit/Network/Validators/CNAMETest.php @@ -12,12 +12,12 @@ class CNAMETest extends TestCase */ protected $object = null; - public function setUp() + public function setUp(): void { $this->object = new CNAME('appwrite.io'); } - public function tearDown() + public function tearDown(): void { } @@ -31,4 +31,4 @@ class CNAMETest extends TestCase $this->assertEquals($this->object->isValid('test1.appwrite.org'), false); $this->assertEquals($this->object->isValid('test1.appwrite.org'), false); } -} \ No newline at end of file +}