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');