mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 07:59:20 +00:00
14 lines
243 B
PHP
14 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Config;
|
|
use Cache;
|
|
|
|
class ConfigObserver {
|
|
public function updated(Config $config): void {
|
|
// 更新系统参数缓存
|
|
Cache::tags('sysConfig')->put($config->name, $config->value?: 0);
|
|
}
|
|
}
|