Completed
Pull Request — master (#299)
by
unknown
02:38
created
application/tests/_ci_phpunit_test/CIPHPUnitTestDbTestCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	{
36 36
 		if ($this->db === null)
37 37
 		{
38
-			$CI =& get_instance();
38
+			$CI = & get_instance();
39 39
 			$CI->load->database();
40 40
 			$this->db = $CI->db;
41 41
 		}
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	protected function tearDown()
56 56
 	{
57
-		if (! empty($this->insertCache))
57
+		if ( ! empty($this->insertCache))
58 58
 		{
59 59
 			foreach ($this->insertCache as $row)
60 60
 			{
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 		$this->db->close();
82 82
 		$this->db = null;
83 83
 
84
-		$CI =& get_instance();
84
+		$CI = & get_instance();
85 85
 		$CI->load->database();
86 86
 		$this->db = $CI->db;
87 87
 	}
Please login to merge, or discard this patch.