Completed
Push — master ( 4b5710...fd0011 )
by Kenji
02:20 queued 11s
created
application/tests/_ci_phpunit_test/functions.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	reset_config();
33 33
 
34 34
 	// Close db connection
35
-	$CI =& get_instance();
35
+	$CI = & get_instance();
36 36
 	if (isset($CI->db))
37 37
 	{
38 38
 		if (
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
 	}
53 53
 
54 54
 	// Load core classes
55
-	$BM =& load_class('Benchmark', 'core');
55
+	$BM = & load_class('Benchmark', 'core');
56 56
 	CIPHPUnitTestSuperGlobal::set_Global('BM', $BM);
57
-	$EXT =& load_class('Hooks', 'core');
57
+	$EXT = & load_class('Hooks', 'core');
58 58
 	CIPHPUnitTestSuperGlobal::set_Global('EXT', $EXT);
59 59
 
60
-	$CFG =& load_class('Config', 'core');
60
+	$CFG = & load_class('Config', 'core');
61 61
 	CIPHPUnitTestSuperGlobal::set_Global('CFG', $CFG);
62 62
 	// Do we have any manually set config items in the index.php file?
63 63
 	global $assign_to_config;
@@ -69,19 +69,19 @@  discard block
 block discarded – undo
69 69
 		}
70 70
 	}
71 71
 
72
-	$UNI =& load_class('URI', 'core');
72
+	$UNI = & load_class('URI', 'core');
73 73
 	CIPHPUnitTestSuperGlobal::set_Global('UNI', $UNI);
74 74
 //	$URI =& load_class('Utf8', 'core');
75 75
 //	CIPHPUnitTestSuperGlobal::set_Global('URI', $URI);
76
-	$RTR =& load_class('Router', 'core');
76
+	$RTR = & load_class('Router', 'core');
77 77
 	CIPHPUnitTestSuperGlobal::set_Global('RTR', $RTR);
78
-	$OUT =& load_class('Output', 'core');
78
+	$OUT = & load_class('Output', 'core');
79 79
 	CIPHPUnitTestSuperGlobal::set_Global('OUT', $OUT);
80
-	$SEC =& load_class('Security', 'core');
80
+	$SEC = & load_class('Security', 'core');
81 81
 	CIPHPUnitTestSuperGlobal::set_Global('SEC', $SEC);
82
-	$IN =& load_class('Input', 'core');
82
+	$IN = & load_class('Input', 'core');
83 83
 	CIPHPUnitTestSuperGlobal::set_Global('IN', $IN);
84
-	$LANG =& load_class('Lang', 'core');
84
+	$LANG = & load_class('Lang', 'core');
85 85
 	CIPHPUnitTestSuperGlobal::set_Global('LANG', $LANG);
86 86
 
87 87
 	CIPHPUnitTest::loadLoader();
Please login to merge, or discard this patch.