diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-20 14:42:35 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-03-20 14:42:35 +0100 |
commit | 733921ecc4da80f08a9d50ff0fb05bccf23de09d (patch) | |
tree | 052fe49e769221ad2e964282cdfa10fabc9b002e /system/database/DB_forge.php | |
parent | 820999cb0d82c80d6dc5dde133568812c8113e29 (diff) | |
parent | 215890b015d219f0d31e8ad678b0b655e6923f3b (diff) |
Merge pull request #1201 from timw4mail/develop
Made database parent classes abstract
Diffstat (limited to 'system/database/DB_forge.php')
-rw-r--r-- | system/database/DB_forge.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php index fe2a67728..34c502a99 100644 --- a/system/database/DB_forge.php +++ b/system/database/DB_forge.php @@ -34,7 +34,7 @@ * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/database/ */ -class CI_DB_forge { +abstract class CI_DB_forge { public $fields = array(); public $keys = array(); @@ -346,4 +346,4 @@ class CI_DB_forge { } /* End of file DB_forge.php */ -/* Location: ./system/database/DB_forge.php */ +/* Location: ./system/database/DB_forge.php */
\ No newline at end of file |