mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
31 lines
613 B
PHP
31 lines
613 B
PHP
<?php
|
|
|
|
namespace Tests\Support;
|
|
|
|
use App\Models\Setting;
|
|
|
|
class Settings
|
|
{
|
|
private Setting $setting;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->setting = Setting::factory()->create();
|
|
}
|
|
|
|
public function enableMultipleFullCompanySupport()
|
|
{
|
|
$this->update(['full_multiple_companies_support' => 1]);
|
|
}
|
|
|
|
public function disableMultipleFullCompanySupport()
|
|
{
|
|
$this->update(['full_multiple_companies_support' => 0]);
|
|
}
|
|
|
|
private function update(array $attributes)
|
|
{
|
|
Setting::unguarded(fn() => $this->setting->update($attributes));
|
|
}
|
|
}
|