修正 命名空间大小写

修正 扩展控制器目录位置
This commit is contained in:
huangdijia
2015-01-23 13:39:51 +08:00
parent b32d00b7f8
commit a2716ad313
71 changed files with 127 additions and 394 deletions

View File

@@ -9,10 +9,10 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db;
use Think\Config;
use Think\Debug;
use Think\Log;
namespace think\db;
use think\config;
use think\debug;
use think\log;
use PDO;
abstract class Driver {

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
/**
* Mongo数据库驱动

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
/**
* mysql数据库驱动

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
/**
* Oracle数据库驱动

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
/**
* Pgsql数据库驱动

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
/**
* Sqlite数据库驱动

View File

@@ -9,8 +9,8 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db\Driver;
use Think\Db\Driver;
namespace think\db\driver;
use think\db\driver;
use PDO;
/**

View File

@@ -9,10 +9,10 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Db;
use Think\Config;
use Think\Debug;
use Think\Log;
namespace think\db;
use think\config;
use think\debug;
use think\log;
use PDO;
class Lite {