snipe-it/tests/Support/InitializesSettings.php
2024-03-14 15:06:52 -07:00

18 lines
303 B
PHP

<?php
namespace Tests\Support;
use App\Models\Setting;
trait InitializesSettings
{
protected Settings $settings;
public function initializeSettings()
{
$this->settings = Settings::initialize();
$this->beforeApplicationDestroyed(fn() => Setting::$_cache = null);
}
}