mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
22 lines
350 B
PHP
22 lines
350 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Observers;
|
||
|
|
||
|
use App\Models\Setting;
|
||
|
use Illuminate\Support\Facades\Cache;
|
||
|
|
||
|
class SettingObserver
|
||
|
{
|
||
|
/**
|
||
|
* Listen to the Setting saved event.
|
||
|
*
|
||
|
* @param Setting $setting
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function saved(Setting $setting)
|
||
|
{
|
||
|
Cache::forget(Setting::SETUP_CHECK_KEY);
|
||
|
}
|
||
|
}
|