修正类映射

This commit is contained in:
thinkphp
2016-01-04 17:38:45 +08:00
parent 62e6fcac52
commit 27cd0b4c96

View File

@@ -19,32 +19,32 @@ return [
// 别名定义
'alias' => [
'think\App' => CORE_PATH . 'app' . EXT,
'think\Build' => CORE_PATH . 'build' . EXT,
'think\Cache' => CORE_PATH . 'cache' . EXT,
'think\Config' => CORE_PATH . 'config' . EXT,
'think\Controller' => CORE_PATH . 'controller' . EXT,
'think\Cookie' => CORE_PATH . 'cookie' . EXT,
'think\Db' => CORE_PATH . 'db' . EXT,
'think\Debug' => CORE_PATH . 'debug' . EXT,
'think\Error' => CORE_PATH . 'error' . EXT,
'think\Exception' => CORE_PATH . 'exception' . EXT,
'think\Hook' => CORE_PATH . 'hook' . EXT,
'think\Input' => CORE_PATH . 'input' . EXT,
'think\Lang' => CORE_PATH . 'lang' . EXT,
'think\Log' => CORE_PATH . 'log' . EXT,
'think\Model' => CORE_PATH . 'model' . EXT,
'think\Response' => CORE_PATH . 'response' . EXT,
'think\Route' => CORE_PATH . 'route' . EXT,
'think\Session' => CORE_PATH . 'session' . EXT,
'think\Template' => CORE_PATH . 'template' . EXT,
'think\Url' => CORE_PATH . 'url' . EXT,
'think\View' => CORE_PATH . 'view' . EXT,
'think\db\Driver' => CORE_PATH . 'db' . DS . 'driver' . EXT,
'think\view\driver\Think' => CORE_PATH . 'view' . DS . 'driver' . DS . 'think' . EXT,
'think\template\driver\File' => CORE_PATH . 'template' . DS . 'driver' . DS . 'file' . EXT,
'think\log\driver\File' => CORE_PATH . 'log' . DS . 'driver' . DS . 'file' . EXT,
'think\cache\driver\File' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'file' . EXT,
'think\App' => CORE_PATH . 'App' . EXT,
'think\Build' => CORE_PATH . 'Build' . EXT,
'think\Cache' => CORE_PATH . 'Cache' . EXT,
'think\Config' => CORE_PATH . 'Config' . EXT,
'think\Controller' => CORE_PATH . 'Controller' . EXT,
'think\Cookie' => CORE_PATH . 'Cookie' . EXT,
'think\Db' => CORE_PATH . 'Db' . EXT,
'think\Debug' => CORE_PATH . 'Debug' . EXT,
'think\Error' => CORE_PATH . 'Error' . EXT,
'think\Exception' => CORE_PATH . 'Exception' . EXT,
'think\Hook' => CORE_PATH . 'Hook' . EXT,
'think\Input' => CORE_PATH . 'Input' . EXT,
'think\Lang' => CORE_PATH . 'Lang' . EXT,
'think\Log' => CORE_PATH . 'Log' . EXT,
'think\Model' => CORE_PATH . 'Model' . EXT,
'think\Response' => CORE_PATH . 'Response' . EXT,
'think\Route' => CORE_PATH . 'Route' . EXT,
'think\Session' => CORE_PATH . 'Session' . EXT,
'think\Template' => CORE_PATH . 'Template' . EXT,
'think\Url' => CORE_PATH . 'Url' . EXT,
'think\View' => CORE_PATH . 'View' . EXT,
'think\db\Driver' => CORE_PATH . 'db' . DS . 'Driver' . EXT,
'think\view\driver\Think' => CORE_PATH . 'view' . DS . 'driver' . DS . 'Think' . EXT,
'think\template\driver\File' => CORE_PATH . 'template' . DS . 'driver' . DS . 'File' . EXT,
'think\log\driver\File' => CORE_PATH . 'log' . DS . 'driver' . DS . 'File' . EXT,
'think\cache\driver\File' => CORE_PATH . 'cache' . DS . 'driver' . DS . 'File' . EXT,
],
];