summaryrefslogtreecommitdiffstats
path: root/system/database/DB_utility.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-02 01:04:59 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-02 01:04:59 +0100
commitc98e93aab3997bfea4fbb9d07f7b2550a84f8f7a (patch)
tree76ce579843019dcd7712355345296c5c6fc9f956 /system/database/DB_utility.php
parentae85eb42aa2d5c6d9a41b3cf6c61a4bf1c9b0566 (diff)
[ci skip] DocBlocks for DB drivers' utility classes
Partially fixes issue #1295.
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r--system/database/DB_utility.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php
index 3bd77c84b..31102c0c6 100644
--- a/system/database/DB_utility.php
+++ b/system/database/DB_utility.php
@@ -45,23 +45,30 @@ abstract class CI_DB_utility extends CI_DB_forge {
// --------------------------------------------------------------------
/**
+ * List databases statement
+ *
+ * @var string
+ */
+ $_list_databases = FALSE;
+
+ /**
* OPTIMIZE TABLE statement
*
- * @var string|bool
+ * @var string
*/
protected $_optimize_table = FALSE;
/**
* REPAIR TABLE statement
*
- * @var string|bool
+ * @var string
*/
protected $_repair_table = FALSE;
// --------------------------------------------------------------------
/**
- * Constructor
+ * Class constructor
*
* @return void
*/