mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
15 lines
200 B
PHP
15 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Config;
|
|
use Cache;
|
|
|
|
class ConfigObserver
|
|
{
|
|
public function updated(Config $config) // 更新设定
|
|
{
|
|
Cache::forget('settings');
|
|
}
|
|
}
|