From 82238ba3a40b66cb67f91a1bdc06a579a62c7722 Mon Sep 17 00:00:00 2001 From: Luke Towers Date: Fri, 27 Mar 2020 12:20:31 -0600 Subject: [PATCH] Fix for Laravel 6 upgrade --- tests/unit/system/console/OctoberEnvTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/system/console/OctoberEnvTest.php b/tests/unit/system/console/OctoberEnvTest.php index d05f43794..77530b002 100644 --- a/tests/unit/system/console/OctoberEnvTest.php +++ b/tests/unit/system/console/OctoberEnvTest.php @@ -13,7 +13,7 @@ class OctoberEnvTest extends TestCase /** @var string Stores the original config path from the app container */ public static $origConfigPath; - protected function setUp() + protected function setUp(): void { parent::setUp(); @@ -52,7 +52,7 @@ class OctoberEnvTest extends TestCase } } - protected function tearDown() + protected function tearDown(): void { $this->tearDownConfigFixtures(); $this->restoreEnvFile();