Improve method name

This commit is contained in:
Marcus Moore 2023-05-01 16:06:28 -07:00
parent da08f6ef8c
commit f7d2b62d87
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ trait InteractsWithSettings
{
protected Settings $settings;
public function setUpSettings()
public function initializeSettings()
{
$this->settings = Settings::initialize();

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();
}
}
}