From 4d4c2cc4497a2f33036349c6715d6f8226864651 Mon Sep 17 00:00:00 2001 From: T1k3 Date: Fri, 19 Jul 2019 08:28:22 +0200 Subject: [PATCH] Fix test case for test bench --- tests/TestCase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index e0eac4a..65baf42 100755 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -24,7 +24,7 @@ abstract class TestCase extends BaseTestCase /** * Setup */ - protected function setUp() + protected function setUp(): void { parent::setUp(); @@ -35,7 +35,7 @@ protected function setUp() /** * Teardown */ - public function tearDown() + public function tearDown(): void { $this->consoleOutput = ''; $this->artisan('migrate:reset');