Improve method name

This commit is contained in:
Marcus Moore
2023-05-01 16:06:28 -07:00
parent da08f6ef8c
commit f7d2b62d87
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ trait InteractsWithSettings
{
protected Settings $settings;
public function setUpSettings()
public function initializeSettings()
{
$this->settings = Settings::initialize();
+1 -1
View File
@@ -23,7 +23,7 @@ abstract class TestCase extends BaseTestCase
$this->withoutMiddleware($this->globallyDisabledMiddleware);
if (collect(class_uses_recursive($this))->contains(InteractsWithSettings::class)) {
$this->setUpSettings();
$this->initializeSettings();
}
}
}