【类 型】:refactor

【主	题】:入口文件引入 公共函数文件
【描	述】:
	[原因]:
	[过程]:
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
This commit is contained in:
tk 2024-06-12 16:33:18 +08:00
parent a4343a1d1a
commit e8f9a1cb4d

View File

@ -2,7 +2,7 @@
/* /*
* @Author: 4021673@qq.com * @Author: 4021673@qq.com
* @Date: 2022-05-27 23:52:59 * @Date: 2022-05-27 23:52:59
* @LastEditTime: 2024-06-12 16:29:16 * @LastEditTime: 2024-06-12 16:32:23
* @Description: Do not edit * @Description: Do not edit
*/ */
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -40,7 +40,7 @@ define('APP_PATH', './FlyCube/');
require __DIR__ . '/vendor/autoload.php'; require __DIR__ . '/vendor/autoload.php';
// 引入公共函数文件 // 引入公共函数文件
require_once APP_PATH . '/FlyCube/Common/Common/functions.php'; require_once APP_PATH . 'Common/Common/functions.php';
// 引入ThinkPHP入口文件 // 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php'; require './ThinkPHP/ThinkPHP.php';