diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-19 21:12:03 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-19 21:12:03 +0100 |
commit | 833d504a91f7c85fa2985bcff5016a052972bd7a (patch) | |
tree | 47a6e35a1a3cec3df81282d5d21426dbd58e189e /system/database/DB_utility.php | |
parent | 7eeda537a1fa8dc3a60bbdb88a7e473cc909f590 (diff) |
Made the rest of the db classes abstract \n
except for the DB_cache class, because I'm not sure if it is directly called
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r-- | system/database/DB_utility.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php index c94f93e5e..a7db803e8 100644 --- a/system/database/DB_utility.php +++ b/system/database/DB_utility.php @@ -32,7 +32,7 @@ * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/database/ */ -class CI_DB_utility extends CI_DB_forge { +abstract class CI_DB_utility extends CI_DB_forge { public $db; public $data_cache = array(); |