snipe-it/tests/Support/InteractsWithSettings.php
2023-05-01 16:04:43 -07:00

18 lines
300 B
PHP

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