summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Http
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http')
-rw-r--r--tests/Unit/Http/TextDownloadResponseTest.php4
-rw-r--r--tests/Unit/Http/TextResponseTest.php4
2 files changed, 4 insertions, 4 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());
}
diff --git a/tests/Unit/Http/TextResponseTest.php b/tests/Unit/Http/TextResponseTest.php
index 5de374a17..eaad769b5 100644
--- a/tests/Unit/Http/TextResponseTest.php
+++ b/tests/Unit/Http/TextResponseTest.php
@@ -21,13 +21,13 @@ class TextResponseTest extends TestCase
{
- protected function setUp()
+ protected function setUp(): void
{
$this->response = new TextResponse('sometext');
}
- public function testRender()
+ public function testRender()
{
$this->assertEquals('sometext', $this->response->render());
}