From bbfb6c338a60fa3063a3a493ce791a39f9904573 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Thu, 6 Apr 2023 17:28:16 -0700 Subject: [PATCH] Remove unused method --- tests/Support/Settings.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/Support/Settings.php b/tests/Support/Settings.php index 6e9d492c3b..bef9378c7b 100644 --- a/tests/Support/Settings.php +++ b/tests/Support/Settings.php @@ -18,11 +18,6 @@ class Settings $this->update(['full_multiple_companies_support' => 1]); } - public function disableMultipleFullCompanySupport() - { - $this->update(['full_multiple_companies_support' => 0]); - } - private function update(array $attributes) { Setting::unguarded(fn() => $this->setting->update($attributes));