From 8004e525172ed458d30116d45741639041d11535 Mon Sep 17 00:00:00 2001 From: Paul Isaris Date: Mon, 3 Feb 2025 11:59:23 +0200 Subject: [PATCH] Remove this method "setUp" to simply inherit it. --- tests/TestCase.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index ae89823..125b37a 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,11 +6,8 @@ use SciFY\LaravelCookiesConsent\LaravelCookiesConsentServiceProvider; class TestCase extends Orchestra { - protected function setUp(): void { - parent::setUp(); - } - protected function getPackageProviders($app) { + protected function getPackageProviders($app): array { return [ LaravelCookiesConsentServiceProvider::class, ];