diff options
author | Andrew Podner <a.podner@me.com> | 2012-12-17 13:51:15 +0100 |
---|---|---|
committer | Andrew Podner <a.podner@me.com> | 2012-12-17 13:51:15 +0100 |
commit | 4296a65693504736b5e65bee5b163fa08cacb563 (patch) | |
tree | f9359955f5009f2e7ef4928f2f98b938b00eb591 /system/database/DB_forge.php | |
parent | 5e872505a06da30c4643b99643b39bd650d45093 (diff) |
update for Issue #2064 (changed docblocks which return $this or only call a method that returns $this to @return CI_DB_class_name)
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 59c3baf8b..fd224c469 100644 --- a/system/database/DB_forge.php +++ b/system/database/DB_forge.php @@ -229,7 +229,7 @@ abstract class CI_DB_forge { * * @param string $key * @param bool $primary - * @return object + * @return CI_DB_forge */ public function add_key($key = '', $primary = FALSE) { @@ -266,7 +266,7 @@ abstract class CI_DB_forge { * Add Field * * @param array $field - * @return object + * @return CI_DB_forge */ public function add_field($field = '') { |