summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Http/TextResponseTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/TextResponseTest.php')
-rw-r--r--tests/Unit/Http/TextResponseTest.php4
1 files changed, 2 insertions, 2 deletions
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());
}