Completed
Push — master ( 453503...1ea5d2 )
by Ricardo Jesus Ruiz
03:24
created
src/CI_DB_utility.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,21 +60,21 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @var	string
62 62
 	 */
63
-	protected $_list_databases		= FALSE;
63
+	protected $_list_databases = FALSE;
64 64
 
65 65
 	/**
66 66
 	 * OPTIMIZE TABLE statement
67 67
 	 *
68 68
 	 * @var	string
69 69
 	 */
70
-	protected $_optimize_table	= FALSE;
70
+	protected $_optimize_table = FALSE;
71 71
 
72 72
 	/**
73 73
 	 * REPAIR TABLE statement
74 74
 	 *
75 75
 	 * @var	string
76 76
 	 */
77
-	protected $_repair_table	= FALSE;
77
+	protected $_repair_table = FALSE;
78 78
 
79 79
 	// --------------------------------------------------------------------
80 80
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	public function __construct(&$db)
88 88
 	{
89
-		$this->db =& $db;
89
+		$this->db = & $db;
90 90
 	}
91 91
 
92 92
 	// --------------------------------------------------------------------
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,8 +102,7 @@
 block discarded – undo
102 102
 		if (isset($this->db->data_cache['db_names']))
103 103
 		{
104 104
 			return $this->db->data_cache['db_names'];
105
-		}
106
-		elseif ($this->_list_databases === FALSE)
105
+		} elseif ($this->_list_databases === FALSE)
107 106
 		{
108 107
 			return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
109 108
 		}
Please login to merge, or discard this patch.