Completed
Pull Request — master (#336)
by
unknown
02:35 queued 18s
created
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ExitPatcher.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 namespace Kenjis\MonkeyPatch\Patcher;
12 12
 
13
-require __DIR__ . '/../Exception/ExitException.php';
13
+require __DIR__.'/../Exception/ExitException.php';
14 14
 
15 15
 class ExitPatcher
16 16
 {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 			}
31 31
 			elseif ($token[0] === T_EXIT)
32 32
 			{
33
-				if ($tokens[$i+1] === ';')
33
+				if ($tokens[$i + 1] === ';')
34 34
 				{
35 35
 					$new_source .= 'exit__()';
36 36
 				}
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,20 +27,17 @@
 block discarded – undo
27 27
 			if (is_string($token))
28 28
 			{
29 29
 				$new_source .= $token;
30
-			}
31
-			elseif ($token[0] === T_EXIT)
30
+			} elseif ($token[0] === T_EXIT)
32 31
 			{
33 32
 				if ($tokens[$i+1] === ';')
34 33
 				{
35 34
 					$new_source .= 'exit__()';
36
-				}
37
-				else
35
+				} else
38 36
 				{
39 37
 					$new_source .= 'exit__';
40 38
 				}
41 39
 				$patched = true;
42
-			}
43
-			else
40
+			} else
44 41
 			{
45 42
 				$new_source .= $token[1];
46 43
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/AbstractPatcher.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@
 block discarded – undo
38 38
 		{
39 39
 			$patched = true;
40 40
 			$new_source = static::generateNewSource($source);
41
-		}
42
-		else
41
+		} else
43 42
 		{
44 43
 			$new_source = $source;
45 44
 		}
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/NodeVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
 	public function leaveNode(Node $node)
22 22
 	{
23
-		if (! ($node instanceof ClassMethod))
23
+		if ( ! ($node instanceof ClassMethod))
24 24
 		{
25 25
 			return;
26 26
 		}
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/PatchManager.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,16 +66,16 @@
 block discarded – undo
66 66
 				$called_method = 'n/a';
67 67
 			}
68 68
 			
69
-			$log_args = function () use ($params) {
69
+			$log_args = function() use ($params) {
70 70
 				$output = '';
71 71
 				foreach ($params as $arg) {
72
-					$output .= var_export($arg, true) . ', ';
72
+					$output .= var_export($arg, true).', ';
73 73
 				}
74 74
 				$output = rtrim($output, ', ');
75 75
 				return $output;
76 76
 			};
77 77
 			MonkeyPatchManager::log(
78
-				'invoke_method: ' . $class.'::'.$method . '(' . $log_args() . ') on line ' . $line . ' in ' . $file . ' by ' . $called_method
78
+				'invoke_method: '.$class.'::'.$method.'('.$log_args().') on line '.$line.' in '.$file.' by '.$called_method
79 79
 			);
80 80
 //			var_dump($trace); exit;
81 81
 		}
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,12 +56,10 @@  discard block
 block discarded – undo
56 56
 			if (isset($info['class_method']))
57 57
 			{
58 58
 				$called_method = $info['class_method'];
59
-			}
60
-			elseif (isset($info['function']))
59
+			} elseif (isset($info['function']))
61 60
 			{
62 61
 				$called_method = $info['function'];
63
-			}
64
-			else
62
+			} else
65 63
 			{
66 64
 				$called_method = 'n/a';
67 65
 			}
@@ -88,8 +86,7 @@  discard block
 block discarded – undo
88 86
 		)
89 87
 		{
90 88
 			$patch = self::$patches[$class][$method];
91
-		}
92
-		else
89
+		} else
93 90
 		{
94 91
 			return __GO_TO_ORIG__;
95 92
 		}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/Backtrace.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
 	public static function getInfo($patcher, $backtrace)
23 23
 	{
24
-		if (! isset(self::$map[$patcher]))
24
+		if ( ! isset(self::$map[$patcher]))
25 25
 		{
26 26
 			throw new LogicException("No such a patcher: $patcher");
27 27
 		}
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
 		$line = isset($backtrace[$offset]['line'])
42 42
 				? $backtrace[$offset]['line'] : null;
43 43
 
44
-		if (isset($backtrace[$offset+2]))
44
+		if (isset($backtrace[$offset + 2]))
45 45
 		{
46
-			$class  = isset($backtrace[$offset+2]['class'])
47
-					? $backtrace[$offset+2]['class']
46
+			$class = isset($backtrace[$offset + 2]['class'])
47
+					? $backtrace[$offset + 2]['class']
48 48
 					: null;
49
-			$function = $backtrace[$offset+2]['function'];
49
+			$function = $backtrace[$offset + 2]['function'];
50 50
 		}
51 51
 		else
52 52
 		{
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 		if (isset($class))
58 58
 		{
59 59
 			$method = $function;
60
-			$class_method = $class . '::' . $function;
60
+			$class_method = $class.'::'.$function;
61 61
 			$function = null;
62 62
 		}
63 63
 		else
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@  discard block
 block discarded – undo
47 47
 					? $backtrace[$offset+2]['class']
48 48
 					: null;
49 49
 			$function = $backtrace[$offset+2]['function'];
50
-		}
51
-		else
50
+		} else
52 51
 		{
53 52
 			$class = null;
54 53
 			$function = null;
@@ -59,8 +58,7 @@  discard block
 block discarded – undo
59 58
 			$method = $function;
60 59
 			$class_method = $class . '::' . $function;
61 60
 			$function = null;
62
-		}
63
-		else
61
+		} else
64 62
 		{
65 63
 			$method = null;
66 64
 			$class_method = null;
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher.php 4 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 
11 11
 namespace Kenjis\MonkeyPatch\Patcher;
12 12
 
13
-require __DIR__ . '/FunctionPatcher/NodeVisitor.php';
14
-require __DIR__ . '/FunctionPatcher/Proxy.php';
13
+require __DIR__.'/FunctionPatcher/NodeVisitor.php';
14
+require __DIR__.'/FunctionPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17 17
 
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -84,6 +84,9 @@  discard block
 block discarded – undo
84 84
 		$this->node_visitor = new NodeVisitor();
85 85
 	}
86 86
 
87
+	/**
88
+	 * @param string $error_msg
89
+	 */
87 90
 	protected static function checkLock($error_msg)
88 91
 	{
89 92
 		if (self::$lock_function_list)
@@ -110,6 +113,9 @@  discard block
 block discarded – undo
110 113
 		return self::$whitelist;
111 114
 	}
112 115
 
116
+	/**
117
+	 * @param string $function_name
118
+	 */
113 119
 	public static function addBlacklist($function_name)
114 120
 	{
115 121
 		self::checkLock("You can't add to blacklist after initialization");
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 require __DIR__ . '/FunctionPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17
-
18 17
 use Kenjis\MonkeyPatch\Patcher\FunctionPatcher\NodeVisitor;
19 18
 
20 19
 class FunctionPatcher extends AbstractPatcher
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@  discard block
 block discarded – undo
72 72
 			if (is_string($token))
73 73
 			{
74 74
 				$new_source .= $token;
75
-			}
76
-			elseif (isset($replacement['key']) && $i == $replacement['key'])
75
+			} elseif (isset($replacement['key']) && $i == $replacement['key'])
77 76
 			{
78 77
 				$new_source .= $replacement['value'];
79 78
 				$replacement['key'] = key(self::$replacement);
@@ -83,8 +82,7 @@  discard block
 block discarded – undo
83 82
 				{
84 83
 					$replacement = false;
85 84
 				}
86
-			}
87
-			else
85
+			} else
88 86
 			{
89 87
 				$new_source .= $token[1];
90 88
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 
11 11
 namespace Kenjis\MonkeyPatch\Patcher;
12 12
 
13
-require __DIR__ . '/ConstantPatcher/NodeVisitor.php';
14
-require __DIR__ . '/ConstantPatcher/Proxy.php';
13
+require __DIR__.'/ConstantPatcher/NodeVisitor.php';
14
+require __DIR__.'/ConstantPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17 17
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 require __DIR__ . '/ConstantPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17
-
18 17
 use Kenjis\MonkeyPatch\Patcher\ConstantPatcher\NodeVisitor;
19 18
 
20 19
 class ConstantPatcher extends AbstractPatcher
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@  discard block
 block discarded – undo
72 72
 			if (is_string($token))
73 73
 			{
74 74
 				$new_source .= $token;
75
-			}
76
-			elseif (isset($replacement['key']) && $i == $replacement['key'])
75
+			} elseif (isset($replacement['key']) && $i == $replacement['key'])
77 76
 			{
78 77
 				$new_source .= $replacement['value'];
79 78
 				$replacement['key'] = key(self::$replacement);
@@ -83,8 +82,7 @@  discard block
 block discarded – undo
83 82
 				{
84 83
 					$replacement = false;
85 84
 				}
86
-			}
87
-			else
85
+			} else
88 86
 			{
89 87
 				$new_source .= $token[1];
90 88
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.0.0-Common.php 3 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -136,6 +136,11 @@  discard block
 block discarded – undo
136 136
 	return $_is_loaded;
137 137
 }
138 138
 
139
+/**
140
+ * @param boolean $return
141
+ *
142
+ * @return boolean
143
+ */
139 144
 function is_cli($return = null)
140 145
 {
141 146
 	static $_return = TRUE;
@@ -148,6 +153,9 @@  discard block
 block discarded – undo
148 153
 	return $_return;
149 154
 }
150 155
 
156
+/**
157
+ * @param string $message
158
+ */
151 159
 function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered')
152 160
 {
153 161
 	$status_code = abs($status_code);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 
264 264
 	// Save status code in Output object
265 265
 	// added by ci-phpunit-test
266
-	$CI =& get_instance();
266
+	$CI = & get_instance();
267 267
 	$output = $CI->output;
268 268
 	$output->_status = [
269 269
 		'code'     => $code,
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 	if (empty($_config))
377 377
 	{
378 378
 		// references cannot be directly assigned to static variables, so we use an array
379
-		$_config[0] =& get_config();
379
+		$_config[0] = & get_config();
380 380
 	}
381 381
 
382 382
 	return isset($_config[0][$item]) ? $_config[0][$item] : NULL;
Please login to merge, or discard this patch.
Braces   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -158,14 +158,16 @@  discard block
 block discarded – undo
158 158
 	if ($status_code < 100)
159 159
 	{
160 160
 		$exit_status = $status_code + 9; // 9 is EXIT__AUTO_MIN
161
-		if ($exit_status > 125) // 125 is EXIT__AUTO_MAX
161
+		if ($exit_status > 125) {
162
+			// 125 is EXIT__AUTO_MAX
162 163
 		{
163
-			$exit_status = 1; // EXIT_ERROR
164
+			$exit_status = 1;
165
+		}
166
+		// EXIT_ERROR
164 167
 		}
165 168
 
166 169
 		$status_code = 500;
167
-	}
168
-	else
170
+	} else
169 171
 	{
170 172
 		$exit_status = 1; // EXIT_ERROR
171 173
 	}
@@ -254,8 +256,7 @@  discard block
 block discarded – undo
254 256
 		if (isset($stati[$code]))
255 257
 		{
256 258
 			$text = $stati[$code];
257
-		}
258
-		else
259
+		} else
259 260
 		{
260 261
 			show_error('No status text available. Please check your status code number or supply your own message text.', 500);
261 262
 		}
@@ -281,8 +282,7 @@  discard block
 block discarded – undo
281 282
 	if (strpos(PHP_SAPI, 'cgi') === 0)
282 283
 	{
283 284
 		header('Status: '.$code.' '.$text, TRUE);
284
-	}
285
-	else
285
+	} else
286 286
 	{
287 287
 		$server_protocol = isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
288 288
 		header($server_protocol.' '.$code.' '.$text, TRUE, $code);
@@ -325,8 +325,7 @@  discard block
 block discarded – undo
325 325
 		if (file_exists($file_path = APPPATH.'config/'.ENVIRONMENT.'/config.php'))
326 326
 		{
327 327
 			require($file_path);
328
-		}
329
-		elseif ( ! $found)
328
+		} elseif ( ! $found)
330 329
 		{
331 330
 			set_status_header(503);
332 331
 			echo 'The configuration file does not exist.';
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.0.0-Loader.php 3 patches
Doc Comments   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 	 * @param	string	$library	Library name
186 186
 	 * @param	array	$params		Optional parameters to pass to the library class constructor
187 187
 	 * @param	string	$object_name	An optional object name to assign to
188
-	 * @return	object
188
+	 * @return	CI_Loader
189 189
 	 */
190 190
 	public function library($library, $params = NULL, $object_name = NULL)
191 191
 	{
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 	 * @param	string	$model		Model name
230 230
 	 * @param	string	$name		An optional object name to assign to
231 231
 	 * @param	bool	$db_conn	An optional database connection configuration to initialize
232
-	 * @return	object
232
+	 * @return	CI_Loader
233 233
 	 * 
234 234
 	 * modified by ci-phpunit-test
235 235
 	 */
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 	/**
318 318
 	 * Database Loader
319 319
 	 *
320
-	 * @param	mixed	$params		Database configuration options
320
+	 * @param	string|boolean	$params		Database configuration options
321 321
 	 * @param	bool	$return 	Whether to return the database object
322 322
 	 * @param	bool	$query_builder	Whether to enable Query Builder
323 323
 	 *					(overrides the configuration setting)
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 	 *					An associative array or object containing values
474 474
 	 *					to be set, or a value's name if string
475 475
 	 * @param 	string	$val	Value to set, only used if $vars is a string
476
-	 * @return	object
476
+	 * @return	CI_Loader
477 477
 	 */
478 478
 	public function vars($vars, $val = '')
479 479
 	{
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 	 *
503 503
 	 * Clears the cached variables.
504 504
 	 *
505
-	 * @return  object
505
+	 * @return  CI_Loader
506 506
 	 */
507 507
 	public function clear_vars()
508 508
 	{
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
 	 * Helper Loader
546 546
 	 *
547 547
 	 * @param	string|string[]	$helpers	Helper name(s)
548
-	 * @return	object
548
+	 * @return	CI_Loader
549 549
 	 */
550 550
 	public function helper($helpers = array())
551 551
 	{
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
 	 *
617 617
 	 * @uses	CI_Loader::helper()
618 618
 	 * @param	string|string[]	$helpers	Helper name(s)
619
-	 * @return	object
619
+	 * @return	CI_Loader
620 620
 	 */
621 621
 	public function helpers($helpers = array())
622 622
 	{
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
 	 *
633 633
 	 * @param	string|string[]	$files	List of language file names to load
634 634
 	 * @param	string		Language name
635
-	 * @return	object
635
+	 * @return	CI_Loader
636 636
 	 */
637 637
 	public function language($files, $lang = '')
638 638
 	{
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 	 *
720 720
 	 * @param	string	$path		Path to add
721 721
 	 * @param 	bool	$view_cascade	(default: TRUE)
722
-	 * @return	object
722
+	 * @return	CI_Loader
723 723
 	 */
724 724
 	public function add_package_path($path, $view_cascade = TRUE)
725 725
 	{
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 	 * added path will be removed removed.
764 764
 	 *
765 765
 	 * @param	string	$path	Path to remove
766
-	 * @return	object
766
+	 * @return	CI_Loader
767 767
 	 */
768 768
 	public function remove_package_path($path = '')
769 769
 	{
@@ -1051,7 +1051,7 @@  discard block
 block discarded – undo
1051 1051
 	 * @used-by	CI_Loader::_ci_load_library()
1052 1052
 	 * @uses	CI_Loader::_ci_init_library()
1053 1053
 	 *
1054
-	 * @param	string	$library	Library name to load
1054
+	 * @param	string	$library_name	Library name to load
1055 1055
 	 * @param	string	$file_path	Path to the library filename, relative to libraries/
1056 1056
 	 * @param	mixed	$params		Optional parameters to pass to the class constructor
1057 1057
 	 * @param	string	$object_name	Optional object name to assign to
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -63,63 +63,63 @@  discard block
 block discarded – undo
63 63
 	 *
64 64
 	 * @var	array
65 65
 	 */
66
-	protected $_ci_view_paths =	array(VIEWPATH	=> TRUE);
66
+	protected $_ci_view_paths = array(VIEWPATH	=> TRUE);
67 67
 
68 68
 	/**
69 69
 	 * List of paths to load libraries from
70 70
 	 *
71 71
 	 * @var	array
72 72
 	 */
73
-	protected $_ci_library_paths =	array(APPPATH, BASEPATH);
73
+	protected $_ci_library_paths = array(APPPATH, BASEPATH);
74 74
 
75 75
 	/**
76 76
 	 * List of paths to load models from
77 77
 	 *
78 78
 	 * @var	array
79 79
 	 */
80
-	protected $_ci_model_paths =	array(APPPATH);
80
+	protected $_ci_model_paths = array(APPPATH);
81 81
 
82 82
 	/**
83 83
 	 * List of paths to load helpers from
84 84
 	 *
85 85
 	 * @var	array
86 86
 	 */
87
-	protected $_ci_helper_paths =	array(APPPATH, BASEPATH);
87
+	protected $_ci_helper_paths = array(APPPATH, BASEPATH);
88 88
 
89 89
 	/**
90 90
 	 * List of cached variables
91 91
 	 *
92 92
 	 * @var	array
93 93
 	 */
94
-	protected $_ci_cached_vars =	array();
94
+	protected $_ci_cached_vars = array();
95 95
 
96 96
 	/**
97 97
 	 * List of loaded classes
98 98
 	 *
99 99
 	 * @var	array
100 100
 	 */
101
-	protected $_ci_classes =	array();
101
+	protected $_ci_classes = array();
102 102
 
103 103
 	/**
104 104
 	 * List of loaded models
105 105
 	 *
106 106
 	 * @var	array
107 107
 	 */
108
-	protected $_ci_models =	array();
108
+	protected $_ci_models = array();
109 109
 
110 110
 	/**
111 111
 	 * List of loaded helpers
112 112
 	 *
113 113
 	 * @var	array
114 114
 	 */
115
-	protected $_ci_helpers =	array();
115
+	protected $_ci_helpers = array();
116 116
 
117 117
 	/**
118 118
 	 * List of class name mappings
119 119
 	 *
120 120
 	 * @var	array
121 121
 	 */
122
-	protected $_ci_varmap =	array(
122
+	protected $_ci_varmap = array(
123 123
 		'unit_test' => 'unit',
124 124
 		'user_agent' => 'agent'
125 125
 	);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 	public function __construct()
137 137
 	{
138 138
 		$this->_ci_ob_level = ob_get_level();
139
-		$this->_ci_classes =& is_loaded();
139
+		$this->_ci_classes = & is_loaded();
140 140
 
141 141
 		log_message('info', 'Loader Class Initialized');
142 142
 	}
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 			return $this;
272 272
 		}
273 273
 
274
-		$CI =& get_instance();
274
+		$CI = & get_instance();
275 275
 		if (isset($CI->$name))
276 276
 		{
277 277
 			show_error('The model name you are loading is the name of a resource that is already being used: '.$name);
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 	public function database($params = '', $return = FALSE, $query_builder = NULL)
329 329
 	{
330 330
 		// Grab the super object
331
-		$CI =& get_instance();
331
+		$CI = & get_instance();
332 332
 
333 333
 		// Do we even need to load the database class?
334 334
 		if ($return === FALSE && $query_builder === NULL && isset($CI->db) && is_object($CI->db) && ! empty($CI->db->conn_id))
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 		$CI->db = '';
349 349
 
350 350
 		// Load the DB class
351
-		$CI->db =& DB($params, $query_builder);
351
+		$CI->db = & DB($params, $query_builder);
352 352
 		return $this;
353 353
 	}
354 354
 
@@ -363,12 +363,12 @@  discard block
 block discarded – undo
363 363
 	 */
364 364
 	public function dbutil($db = NULL, $return = FALSE)
365 365
 	{
366
-		$CI =& get_instance();
366
+		$CI = & get_instance();
367 367
 
368 368
 		if ( ! is_object($db) OR ! ($db instanceof CI_DB))
369 369
 		{
370 370
 			class_exists('CI_DB', FALSE) OR $this->database();
371
-			$db =& $CI->db;
371
+			$db = & $CI->db;
372 372
 		}
373 373
 
374 374
 		require_once(BASEPATH.'database/DB_utility.php');
@@ -395,11 +395,11 @@  discard block
 block discarded – undo
395 395
 	 */
396 396
 	public function dbforge($db = NULL, $return = FALSE)
397 397
 	{
398
-		$CI =& get_instance();
398
+		$CI = & get_instance();
399 399
 		if ( ! is_object($db) OR ! ($db instanceof CI_DB))
400 400
 		{
401 401
 			class_exists('CI_DB', FALSE) OR $this->database();
402
-			$db =& $CI->db;
402
+			$db = & $CI->db;
403 403
 		}
404 404
 
405 405
 		require_once(BASEPATH.'database/DB_forge.php');
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
 		$this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths;
733 733
 
734 734
 		// Add config file path
735
-		$config =& $this->_ci_get_component('config');
735
+		$config = & $this->_ci_get_component('config');
736 736
 		$config->_config_paths[] = $path;
737 737
 
738 738
 		return $this;
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
 	 */
768 768
 	public function remove_package_path($path = '')
769 769
 	{
770
-		$config =& $this->_ci_get_component('config');
770
+		$config = & $this->_ci_get_component('config');
771 771
 
772 772
 		if ($path === '')
773 773
 		{
@@ -868,12 +868,12 @@  discard block
 block discarded – undo
868 868
 
869 869
 		// This allows anything loaded using $this->load (views, files, etc.)
870 870
 		// to become accessible from within the Controller and Model functions.
871
-		$_ci_CI =& get_instance();
871
+		$_ci_CI = & get_instance();
872 872
 		foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
873 873
 		{
874 874
 			if ( ! isset($this->$_ci_key))
875 875
 			{
876
-				$this->$_ci_key =& $_ci_CI->$_ci_key;
876
+				$this->$_ci_key = & $_ci_CI->$_ci_key;
877 877
 			}
878 878
 		}
879 879
 
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
 				// return a new instance of the object
1013 1013
 				if ($object_name !== NULL)
1014 1014
 				{
1015
-					$CI =& get_instance();
1015
+					$CI = & get_instance();
1016 1016
 					if ( ! isset($CI->$object_name))
1017 1017
 					{
1018 1018
 						return $this->_ci_init_library($class, '', $params, $object_name);
@@ -1075,7 +1075,7 @@  discard block
 block discarded – undo
1075 1075
 			// return a new instance of the object
1076 1076
 			if ($object_name !== NULL)
1077 1077
 			{
1078
-				$CI =& get_instance();
1078
+				$CI = & get_instance();
1079 1079
 				if ( ! isset($CI->$object_name))
1080 1080
 				{
1081 1081
 					return $this->_ci_init_library($library_name, $prefix, $params, $object_name);
@@ -1218,7 +1218,7 @@  discard block
 block discarded – undo
1218 1218
 		}
1219 1219
 
1220 1220
 		// Don't overwrite existing properties
1221
-		$CI =& get_instance();
1221
+		$CI = & get_instance();
1222 1222
 		if (isset($CI->$object_name))
1223 1223
 		{
1224 1224
 			if ($CI->$object_name instanceof $class_name)
@@ -1354,7 +1354,7 @@  discard block
 block discarded – undo
1354 1354
 	 */
1355 1355
 	protected function &_ci_get_component($component)
1356 1356
 	{
1357
-		$CI =& get_instance();
1357
+		$CI = & get_instance();
1358 1358
 		return $CI->$component;
1359 1359
 	}
1360 1360
 
Please login to merge, or discard this patch.
Braces   +14 added lines, -28 removed lines patch added patch discarded remove patch
@@ -192,16 +192,14 @@  discard block
 block discarded – undo
192 192
 		if (empty($library))
193 193
 		{
194 194
 			return $this;
195
-		}
196
-		elseif (is_array($library))
195
+		} elseif (is_array($library))
197 196
 		{
198 197
 			foreach ($library as $key => $value)
199 198
 			{
200 199
 				if (is_int($key))
201 200
 				{
202 201
 					$this->library($value, $params);
203
-				}
204
-				else
202
+				} else
205 203
 				{
206 204
 					$this->library($key, $params, $value);
207 205
 				}
@@ -238,8 +236,7 @@  discard block
 block discarded – undo
238 236
 		if (empty($model))
239 237
 		{
240 238
 			return $this;
241
-		}
242
-		elseif (is_array($model))
239
+		} elseif (is_array($model))
243 240
 		{
244 241
 			foreach ($model as $key => $value)
245 242
 			{
@@ -413,8 +410,7 @@  discard block
 block discarded – undo
413 410
 				require_once($driver_path);
414 411
 				$class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge';
415 412
 			}
416
-		}
417
-		else
413
+		} else
418 414
 		{
419 415
 			$class = 'CI_DB_'.$db->dbdriver.'_forge';
420 416
 		}
@@ -682,8 +678,7 @@  discard block
 block discarded – undo
682 678
 			}
683 679
 
684 680
 			return $this;
685
-		}
686
-		elseif (empty($library))
681
+		} elseif (empty($library))
687 682
 		{
688 683
 			return FALSE;
689 684
 		}
@@ -776,8 +771,7 @@  discard block
 block discarded – undo
776 771
 			array_shift($this->_ci_helper_paths);
777 772
 			array_shift($this->_ci_view_paths);
778 773
 			array_pop($config->_config_paths);
779
-		}
780
-		else
774
+		} else
781 775
 		{
782 776
 			$path = rtrim($path, '/').'/';
783 777
 			foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
@@ -839,8 +833,7 @@  discard block
 block discarded – undo
839 833
 		{
840 834
 			$_ci_x = explode('/', $_ci_path);
841 835
 			$_ci_file = end($_ci_x);
842
-		}
843
-		else
836
+		} else
844 837
 		{
845 838
 			$_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
846 839
 			$_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
@@ -910,8 +903,7 @@  discard block
 block discarded – undo
910 903
 		if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE && function_usable('eval'))
911 904
 		{
912 905
 			echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
913
-		}
914
-		else
906
+		} else
915 907
 		{
916 908
 			include($_ci_path); // include() vs include_once() allows for multiple views with the same name
917 909
 		}
@@ -938,8 +930,7 @@  discard block
 block discarded – undo
938 930
 		if (ob_get_level() > $this->_ci_ob_level + 1)
939 931
 		{
940 932
 			ob_end_flush();
941
-		}
942
-		else
933
+		} else
943 934
 		{
944 935
 			$_ci_CI->output->append_output(ob_get_contents());
945 936
 			@ob_end_clean();
@@ -979,8 +970,7 @@  discard block
 block discarded – undo
979 970
 
980 971
 			// Get the filename from the path
981 972
 			$class = substr($class, $last_slash);
982
-		}
983
-		else
973
+		} else
984 974
 		{
985 975
 			$subdir = '';
986 976
 		}
@@ -1121,8 +1111,7 @@  discard block
 block discarded – undo
1121 1111
 				{
1122 1112
 					$prefix = config_item('subclass_prefix');
1123 1113
 					break;
1124
-				}
1125
-				else
1114
+				} else
1126 1115
 				{
1127 1116
 					log_message('debug', APPPATH.'libraries/'.$file_path.$subclass.'.php exists, but does not declare '.$subclass);
1128 1117
 				}
@@ -1169,8 +1158,7 @@  discard block
 block discarded – undo
1169 1158
 					{
1170 1159
 						include($path.'config/'.strtolower($class).'.php');
1171 1160
 						$found = TRUE;
1172
-					}
1173
-					elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1161
+					} elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1174 1162
 					{
1175 1163
 						include($path.'config/'.ucfirst(strtolower($class)).'.php');
1176 1164
 						$found = TRUE;
@@ -1180,8 +1168,7 @@  discard block
 block discarded – undo
1180 1168
 					{
1181 1169
 						include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php');
1182 1170
 						$found = TRUE;
1183
-					}
1184
-					elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
1171
+					} elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
1185 1172
 					{
1186 1173
 						include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
1187 1174
 						$found = TRUE;
@@ -1375,8 +1362,7 @@  discard block
 block discarded – undo
1375 1362
 		if ( ! is_array($filename))
1376 1363
 		{
1377 1364
 			return array(strtolower(str_replace(array($extension, '.php'), '', $filename).$extension));
1378
-		}
1379
-		else
1365
+		} else
1380 1366
 		{
1381 1367
 			foreach ($filename as $key => $val)
1382 1368
 			{
Please login to merge, or discard this patch.