22 lines
281 B
PHP
Executable File
22 lines
281 B
PHP
Executable File
<?php
|
|
|
|
namespace app\common\behavior;
|
|
|
|
use think\Config;
|
|
use think\Cache;
|
|
use think\Loader;
|
|
use think\Hook;
|
|
|
|
/**
|
|
* Description of SystemConfig
|
|
* 系统配置初始化
|
|
*/
|
|
class SystemConfig {
|
|
|
|
//记录行为
|
|
public function run() {
|
|
|
|
}
|
|
|
|
}
|