废除APP_AUTO_BUILD常量 系统不再判断是否需要自动生成 自动生成交给console执行 APP_AUTO_RUN默认值更改为true(start引导文件默认自动执行应用)

This commit is contained in:
thinkphp
2016-02-21 17:03:23 +08:00
parent ae07e1c4f1
commit d014a37f36
5 changed files with 3 additions and 11 deletions

View File

@@ -14,12 +14,12 @@ $_SERVER['REQUEST_METHOD'] = 'GET';
// 定义项目测试基础路径
define('TEST_PATH', __DIR__ . '/');
// 定义项目路径
define('APP_PATH', __DIR__ . '/../../application/');
// 开启调试模式
define('APP_DEBUG', true);
// 关闭应用自动执行
define('APP_AUTO_RUN', false);
// 加载框架引导文件
require __DIR__ . '/../start.php';
\think\Loader::addNamespace('tests', TEST_PATH);