2023-04-12 17:28:47 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Support;
|
|
|
|
|
2023-05-01 16:04:43 -07:00
|
|
|
use App\Models\Setting;
|
|
|
|
|
2024-03-14 15:06:52 -07:00
|
|
|
trait InitializesSettings
|
2023-04-12 17:28:47 -07:00
|
|
|
{
|
2023-04-13 16:52:20 -07:00
|
|
|
protected Settings $settings;
|
2023-04-12 17:28:47 -07:00
|
|
|
|
2023-05-01 16:06:28 -07:00
|
|
|
public function initializeSettings()
|
2023-04-13 16:52:20 -07:00
|
|
|
{
|
|
|
|
$this->settings = Settings::initialize();
|
2023-05-01 16:04:43 -07:00
|
|
|
|
|
|
|
$this->beforeApplicationDestroyed(fn() => Setting::$_cache = null);
|
2023-04-13 16:52:20 -07:00
|
|
|
}
|
2023-04-12 17:28:47 -07:00
|
|
|
}
|