模式定义文件修改

This commit is contained in:
thinkphp
2016-04-27 10:25:42 +08:00
parent d93ed98f77
commit d33a164c2f
2 changed files with 87 additions and 75 deletions

View File

@@ -37,10 +37,16 @@ return [
'think\Debug' => CORE_PATH . 'Debug' . EXT, 'think\Debug' => CORE_PATH . 'Debug' . EXT,
'think\Error' => CORE_PATH . 'Error' . EXT, 'think\Error' => CORE_PATH . 'Error' . EXT,
'think\Exception' => CORE_PATH . 'Exception' . EXT, 'think\Exception' => CORE_PATH . 'Exception' . EXT,
'think\exception\DbException' => CORE_PATH . 'exception' . DS . 'DbException' . EXT,
'think\exception\PDOException' => CORE_PATH . 'exception' . DS . 'PDOException' . EXT,
'think\exception\ErrorException' => CORE_PATH . 'exception' . DS . 'ErrorException' . EXT,
'think\exception\DbBindParamException' => CORE_PATH . 'exception' . DS . 'DbBindParamException' . EXT,
'think\exception\NotFoundException' => CORE_PATH . 'exception' . DS . 'NotFoundException' . EXT,
'think\Hook' => CORE_PATH . 'Hook' . EXT, 'think\Hook' => CORE_PATH . 'Hook' . EXT,
'think\Input' => CORE_PATH . 'Input' . EXT, 'think\Input' => CORE_PATH . 'Input' . EXT,
'think\Lang' => CORE_PATH . 'Lang' . EXT, 'think\Lang' => CORE_PATH . 'Lang' . EXT,
'think\Log' => CORE_PATH . 'Log' . EXT, 'think\Log' => CORE_PATH . 'Log' . EXT,
'think\Model' => CORE_PATH . 'Model' . EXT,
'think\model\Relation' => CORE_PATH . 'model' . DS . 'Relation' . EXT, 'think\model\Relation' => CORE_PATH . 'model' . DS . 'Relation' . EXT,
'think\model\Merge' => CORE_PATH . 'model' . DS . 'Merge' . EXT, 'think\model\Merge' => CORE_PATH . 'model' . DS . 'Merge' . EXT,
'think\model\Pivot' => CORE_PATH . 'model' . DS . 'Pivot' . EXT, 'think\model\Pivot' => CORE_PATH . 'model' . DS . 'Pivot' . EXT,
@@ -49,6 +55,7 @@ return [
'think\Route' => CORE_PATH . 'Route' . EXT, 'think\Route' => CORE_PATH . 'Route' . EXT,
'think\Session' => CORE_PATH . 'Session' . EXT, 'think\Session' => CORE_PATH . 'Session' . EXT,
'think\Template' => CORE_PATH . 'Template' . EXT, 'think\Template' => CORE_PATH . 'Template' . EXT,
'think\Url' => CORE_PATH . 'Url' . EXT,
'think\Validate' => CORE_PATH . 'Validate' . EXT, 'think\Validate' => CORE_PATH . 'Validate' . EXT,
'think\View' => CORE_PATH . 'View' . EXT, 'think\View' => CORE_PATH . 'View' . EXT,
'think\db\Connection' => CORE_PATH . 'db' . DS . 'Connection' . EXT, 'think\db\Connection' => CORE_PATH . 'db' . DS . 'Connection' . EXT,

View File

@@ -81,6 +81,11 @@ return [
'think\Debug' => CORE_PATH . 'Debug' . EXT, 'think\Debug' => CORE_PATH . 'Debug' . EXT,
'think\Error' => CORE_PATH . 'Error' . EXT, 'think\Error' => CORE_PATH . 'Error' . EXT,
'think\Exception' => CORE_PATH . 'Exception' . EXT, 'think\Exception' => CORE_PATH . 'Exception' . EXT,
'think\exception\DbException' => CORE_PATH . 'exception' . DS . 'DbException' . EXT,
'think\exception\PDOException' => CORE_PATH . 'exception' . DS . 'PDOException' . EXT,
'think\exception\ErrorException' => CORE_PATH . 'exception' . DS . 'ErrorException' . EXT,
'think\exception\DbBindParamException' => CORE_PATH . 'exception' . DS . 'DbBindParamException' . EXT,
'think\exception\NotFoundException' => CORE_PATH . 'exception' . DS . 'NotFoundException' . EXT,
'think\Hook' => CORE_PATH . 'Hook' . EXT, 'think\Hook' => CORE_PATH . 'Hook' . EXT,
'think\Input' => CORE_PATH . 'Input' . EXT, 'think\Input' => CORE_PATH . 'Input' . EXT,
'think\Lang' => CORE_PATH . 'Lang' . EXT, 'think\Lang' => CORE_PATH . 'Lang' . EXT,