From 447f4062d0b09e69d64efff6409e506c40552ebe Mon Sep 17 00:00:00 2001 From: Mou Ikkai <45863583+Mou-Ikkai@users.noreply.github.com> Date: Wed, 30 Sep 2020 17:55:55 -0400 Subject: [PATCH] Update UploadTest.php --- tests/unit/Storage/Validator/UploadTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Storage/Validator/UploadTest.php b/tests/unit/Storage/Validator/UploadTest.php index f853b43f4f..4d360ef415 100644 --- a/tests/unit/Storage/Validator/UploadTest.php +++ b/tests/unit/Storage/Validator/UploadTest.php @@ -12,12 +12,12 @@ class UploadTest extends TestCase */ protected $object = null; - public function setUp() + public function setUp(): void { $this->object = new Upload(); } - public function tearDown() + public function tearDown(): void { } @@ -29,4 +29,4 @@ class UploadTest extends TestCase $this->assertEquals($this->object->isValid(__DIR__ . '/../../../resources/disk-b/kitten-2.png'), false); $this->assertEquals($this->object->isValid(__FILE__), false); } -} \ No newline at end of file +}