summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Http/TextDownloadResponseTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/TextDownloadResponseTest.php')
-rw-r--r--tests/Unit/Http/TextDownloadResponseTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Http/TextDownloadResponseTest.php b/tests/Unit/Http/TextDownloadResponseTest.php
index 4021d22aa..be5f53ec1 100644
--- a/tests/Unit/Http/TextDownloadResponseTest.php
+++ b/tests/Unit/Http/TextDownloadResponseTest.php
@@ -22,7 +22,7 @@ class TextDownloadResponseTest extends TestCase
{
- protected function setUp()
+ protected function setUp(): void
{
$this->response = new TextDownloadResponse(
'sometext', 'file', 'content'
@@ -30,7 +30,7 @@ class TextDownloadResponseTest extends TestCase
}
- public function testRender()
+ public function testRender()
{
$this->assertEquals('sometext', $this->response->render());
}