From 92a464520f91acc7e9a9a2b4fb18ac14dbc2d73e Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 20 Feb 2023 15:39:51 +0100 Subject: [PATCH] Delete setting `tenancy.features` in `getPackageProviders()` --- tests/TestCase.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 791747dd..3fb48766 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,7 +8,6 @@ use Dotenv\Dotenv; use Illuminate\Foundation\Application; use Illuminate\Support\Facades\Redis; use PDO; -use Stancl\Tenancy\Bootstrappers\BatchTenancyBootstrapper; use Stancl\Tenancy\Bootstrappers\RedisTenancyBootstrapper; use Stancl\Tenancy\Facades\GlobalCache; use Stancl\Tenancy\Facades\Tenancy; @@ -118,8 +117,6 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase protected function getPackageProviders($app) { - config()->set('tenancy.features', [CrossDomainRedirect::class]); // todo (Samuel) use proper approach to enable feature in right place - return [ TenancyServiceProvider::class, ];