Completed
Push — master ( 761b56...cfe3b8 )
by Kenji
02:53
created
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/Backtrace.php 1 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 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -173,13 +173,11 @@
 block discarded – undo
173 173
 			if (is_string($token))
174 174
 			{
175 175
 				$new_source .= $token;
176
-			}
177
-			elseif ($i == $replacement['key'])
176
+			} elseif ($i == $replacement['key'])
178 177
 			{
179 178
 				$new_source .= $replacement['value'];
180 179
 				$replacement = each(self::$replacement);
181
-			}
182
-			else
180
+			} else
183 181
 			{
184 182
 				$new_source .= $token[1];
185 183
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,13 +58,11 @@
 block discarded – undo
58 58
 					$new_source .= '{ ' . self::CODE;
59 59
 					$start_method = false;
60 60
 					$replacement = each(self::$replacement);
61
-				}
62
-				else
61
+				} else
63 62
 				{
64 63
 					$new_source .= $token;
65 64
 				}
66
-			}
67
-			else
65
+			} else
68 66
 			{
69 67
 				$new_source .= $token[1];
70 68
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -173,13 +173,11 @@
 block discarded – undo
173 173
 			if (is_string($token))
174 174
 			{
175 175
 				$new_source .= $token;
176
-			}
177
-			elseif ($i == $replacement['key'])
176
+			} elseif ($i == $replacement['key'])
178 177
 			{
179 178
 				$new_source .= $replacement['value'];
180 179
 				$replacement = each(self::$replacement);
181
-			}
182
-			else
180
+			} else
183 181
 			{
184 182
 				$new_source .= $token[1];
185 183
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/2.x/MonkeyPatchManager.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,7 @@
 block discarded – undo
70 70
 		if (isset($config['root_dir']))
71 71
 		{
72 72
 			Cache::setProjectRootDir($config['root_dir']);
73
-		}
74
-		else
73
+		} else
75 74
 		{
76 75
 			// APPPATH is constant in CodeIgniter
77 76
 			Cache::setProjectRootDir(APPPATH . '../');
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/libraries/old/3.1.2-Upload.php 1 patch
Braces   +21 added lines, -19 removed lines patch added patch discarded remove patch
@@ -327,19 +327,16 @@  discard block
 block discarded – undo
327 327
 					if ($reflection->hasMethod('set_'.$key))
328 328
 					{
329 329
 						$this->{'set_'.$key}($config[$key]);
330
-					}
331
-					else
330
+					} else
332 331
 					{
333 332
 						$this->$key = $config[$key];
334 333
 					}
335
-				}
336
-				else
334
+				} else
337 335
 				{
338 336
 					$this->$key = $defaults[$key];
339 337
 				}
340 338
 			}
341
-		}
342
-		else
339
+		} else
343 340
 		{
344 341
 			foreach ($config as $key => &$value)
345 342
 			{
@@ -348,8 +345,7 @@  discard block
 block discarded – undo
348 345
 					if ($reflection->hasMethod('set_'.$key))
349 346
 					{
350 347
 						$this->{'set_'.$key}($value);
351
-					}
352
-					else
348
+					} else
353 349
 					{
354 350
 						$this->$key = $value;
355 351
 					}
@@ -409,9 +405,11 @@  discard block
 block discarded – undo
409 405
 		}
410 406
 
411 407
 		// Was the file able to be uploaded? If not, determine the reason why.
412
-		if ( ! file_exists($_file['tmp_name']))	// modified by ci-phpunit-test
408
+		if ( ! file_exists($_file['tmp_name'])) {
409
+			// modified by ci-phpunit-test
413 410
 		{
414 411
 			$error = isset($_file['error']) ? $_file['error'] : 4;
412
+		}
415 413
 
416 414
 			switch ($error)
417 415
 			{
@@ -476,8 +474,7 @@  discard block
 block discarded – undo
476 474
 			if (strpos($this->_file_name_override, '.') === FALSE)
477 475
 			{
478 476
 				$this->file_name .= $this->file_ext;
479
-			}
480
-			else
477
+			} else
481 478
 			{
482 479
 				// An extension was provided, let's have it!
483 480
 				$this->file_ext	= $this->get_extension($this->_file_name_override);
@@ -677,8 +674,7 @@  discard block
 block discarded – undo
677 674
 		{
678 675
 			$this->set_error('upload_bad_filename', 'debug');
679 676
 			return FALSE;
680
-		}
681
-		else
677
+		} else
682 678
 		{
683 679
 			return $new_filename;
684 680
 		}
@@ -863,8 +859,7 @@  discard block
 block discarded – undo
863 859
 		if (in_array($this->file_type, $png_mimes))
864 860
 		{
865 861
 			$this->file_type = 'image/png';
866
-		}
867
-		elseif (in_array($this->file_type, $jpeg_mimes))
862
+		} elseif (in_array($this->file_type, $jpeg_mimes))
868 863
 		{
869 864
 			$this->file_type = 'image/jpeg';
870 865
 		}
@@ -1116,9 +1111,12 @@  discard block
 block discarded – undo
1116 1111
 
1117 1112
 		if (function_exists('getimagesize') && @getimagesize($file) !== FALSE)
1118 1113
 		{
1119
-			if (($file = @fopen($file, 'rb')) === FALSE) // "b" to force binary
1114
+			if (($file = @fopen($file, 'rb')) === FALSE) {
1115
+				// "b" to force binary
1120 1116
 			{
1121
-				return FALSE; // Couldn't open the file, return FALSE
1117
+				return FALSE;
1118
+			}
1119
+			// Couldn't open the file, return FALSE
1122 1120
 			}
1123 1121
 
1124 1122
 			$opening_bytes = fread($file, 256);
@@ -1220,9 +1218,11 @@  discard block
 block discarded – undo
1220 1218
 
1221 1219
 		// Fileinfo extension - most reliable method
1222 1220
 		$finfo = @finfo_open(FILEINFO_MIME);
1223
-		if (is_resource($finfo)) // It is possible that a FALSE value is returned, if there is no magic MIME database file found on the system
1221
+		if (is_resource($finfo)) {
1222
+			// It is possible that a FALSE value is returned, if there is no magic MIME database file found on the system
1224 1223
 		{
1225 1224
 			$mime = @finfo_file($finfo, $file['tmp_name']);
1225
+		}
1226 1226
 			finfo_close($finfo);
1227 1227
 
1228 1228
 			/* According to the comments section of the PHP manual page,
@@ -1306,10 +1306,12 @@  discard block
 block discarded – undo
1306 1306
 		if (function_exists('mime_content_type'))
1307 1307
 		{
1308 1308
 			$this->file_type = @mime_content_type($file['tmp_name']);
1309
-			if (strlen($this->file_type) > 0) // It's possible that mime_content_type() returns FALSE or an empty string
1309
+			if (strlen($this->file_type) > 0) {
1310
+				// It's possible that mime_content_type() returns FALSE or an empty string
1310 1311
 			{
1311 1312
 				return;
1312 1313
 			}
1314
+			}
1313 1315
 		}
1314 1316
 
1315 1317
 		$this->file_type = $file['type'];
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.0.1-Loader.php 1 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
 			{
@@ -427,8 +424,7 @@  discard block
 block discarded – undo
427 424
 				require_once($driver_path);
428 425
 				$class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge';
429 426
 			}
430
-		}
431
-		else
427
+		} else
432 428
 		{
433 429
 			$class = 'CI_DB_'.$db->dbdriver.'_forge';
434 430
 		}
@@ -696,8 +692,7 @@  discard block
 block discarded – undo
696 692
 			}
697 693
 
698 694
 			return $this;
699
-		}
700
-		elseif (empty($library))
695
+		} elseif (empty($library))
701 696
 		{
702 697
 			return FALSE;
703 698
 		}
@@ -790,8 +785,7 @@  discard block
 block discarded – undo
790 785
 			array_shift($this->_ci_helper_paths);
791 786
 			array_shift($this->_ci_view_paths);
792 787
 			array_pop($config->_config_paths);
793
-		}
794
-		else
788
+		} else
795 789
 		{
796 790
 			$path = rtrim($path, '/').'/';
797 791
 			foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
@@ -853,8 +847,7 @@  discard block
 block discarded – undo
853 847
 		{
854 848
 			$_ci_x = explode('/', $_ci_path);
855 849
 			$_ci_file = end($_ci_x);
856
-		}
857
-		else
850
+		} else
858 851
 		{
859 852
 			$_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
860 853
 			$_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view;
@@ -924,8 +917,7 @@  discard block
 block discarded – undo
924 917
 		if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE)
925 918
 		{
926 919
 			echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
927
-		}
928
-		else
920
+		} else
929 921
 		{
930 922
 			include($_ci_path); // include() vs include_once() allows for multiple views with the same name
931 923
 		}
@@ -952,8 +944,7 @@  discard block
 block discarded – undo
952 944
 		if (ob_get_level() > $this->_ci_ob_level + 1)
953 945
 		{
954 946
 			ob_end_flush();
955
-		}
956
-		else
947
+		} else
957 948
 		{
958 949
 			$_ci_CI->output->append_output(ob_get_contents());
959 950
 			@ob_end_clean();
@@ -993,8 +984,7 @@  discard block
 block discarded – undo
993 984
 
994 985
 			// Get the filename from the path
995 986
 			$class = substr($class, $last_slash);
996
-		}
997
-		else
987
+		} else
998 988
 		{
999 989
 			$subdir = '';
1000 990
 		}
@@ -1135,8 +1125,7 @@  discard block
 block discarded – undo
1135 1125
 				{
1136 1126
 					$prefix = config_item('subclass_prefix');
1137 1127
 					break;
1138
-				}
1139
-				else
1128
+				} else
1140 1129
 				{
1141 1130
 					log_message('debug', $path.' exists, but does not declare '.$subclass);
1142 1131
 				}
@@ -1183,8 +1172,7 @@  discard block
 block discarded – undo
1183 1172
 					{
1184 1173
 						include($path.'config/'.strtolower($class).'.php');
1185 1174
 						$found = TRUE;
1186
-					}
1187
-					elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1175
+					} elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1188 1176
 					{
1189 1177
 						include($path.'config/'.ucfirst(strtolower($class)).'.php');
1190 1178
 						$found = TRUE;
@@ -1194,8 +1182,7 @@  discard block
 block discarded – undo
1194 1182
 					{
1195 1183
 						include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php');
1196 1184
 						$found = TRUE;
1197
-					}
1198
-					elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
1185
+					} elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'))
1199 1186
 					{
1200 1187
 						include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
1201 1188
 						$found = TRUE;
@@ -1386,8 +1373,7 @@  discard block
 block discarded – undo
1386 1373
 		if ( ! is_array($filename))
1387 1374
 		{
1388 1375
 			return array(strtolower(str_replace(array($extension, '.php'), '', $filename).$extension));
1389
-		}
1390
-		else
1376
+		} else
1391 1377
 		{
1392 1378
 			foreach ($filename as $key => $val)
1393 1379
 			{
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/replacing/core/old/3.0.0-Loader.php 1 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.
application/tests/_ci_phpunit_test/replacing/core/old/3.0.3-CodeIgniter.php 1 patch
Braces   +9 added lines, -18 removed lines patch added patch discarded remove patch
@@ -169,12 +169,10 @@  discard block
 block discarded – undo
169 169
 			file_exists(APPPATH.'vendor/autoload.php')
170 170
 				? require_once(APPPATH.'vendor/autoload.php')
171 171
 				: log_message('error', '$config[\'composer_autoload\'] is set to TRUE but '.APPPATH.'vendor/autoload.php was not found.');
172
-		}
173
-		elseif (file_exists($composer_autoload))
172
+		} elseif (file_exists($composer_autoload))
174 173
 		{
175 174
 			require_once($composer_autoload);
176
-		}
177
-		else
175
+		} else
178 176
 		{
179 177
 			log_message('error', 'Could not find the specified $config[\'composer_autoload\'] path: '.$composer_autoload);
180 178
 		}
@@ -253,8 +251,7 @@  discard block
 block discarded – undo
253 251
 		// This is required for mb_convert_encoding() to strip invalid characters.
254 252
 		// That's utilized by CI_Utf8, but it's also done for consistency with iconv.
255 253
 		mb_substitute_character('none');
256
-	}
257
-	else
254
+	} else
258 255
 	{
259 256
 		define('MB_ENABLED', FALSE);
260 257
 	}
@@ -267,8 +264,7 @@  discard block
 block discarded – undo
267 264
 		// iconv.internal_encoding is deprecated starting with PHP 5.6
268 265
 		// and it's usage triggers E_DEPRECATED messages.
269 266
 		@ini_set('iconv.internal_encoding', $charset);
270
-	}
271
-	else
267
+	} else
272 268
 	{
273 269
 		define('ICONV_ENABLED', FALSE);
274 270
 	}
@@ -378,8 +374,7 @@  discard block
 block discarded – undo
378 374
 		if (! CIPHPUnitTest::wiredesignzHmvcInstalled())
379 375
 		{
380 376
 			return CI_Controller::get_instance();
381
-		}
382
-		else
377
+		} else
383 378
 		{
384 379
 			return CI::$APP;
385 380
 		}
@@ -424,16 +419,14 @@  discard block
 block discarded – undo
424 419
 	if (empty($class) OR ! file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php'))
425 420
 	{
426 421
 		$e404 = TRUE;
427
-	}
428
-	else
422
+	} else
429 423
 	{
430 424
 		require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
431 425
 
432 426
 		if ( ! class_exists($class, FALSE) OR $method[0] === '_' OR method_exists('CI_Controller', $method))
433 427
 		{
434 428
 			$e404 = TRUE;
435
-		}
436
-		elseif (method_exists($class, '_remap'))
429
+		} elseif (method_exists($class, '_remap'))
437 430
 		{
438 431
 			$params = array($method, array_slice($URI->rsegments, 2));
439 432
 			$method = '_remap';
@@ -475,8 +468,7 @@  discard block
 block discarded – undo
475 468
 						$RTR->directory = '';
476 469
 					}
477 470
 				}
478
-			}
479
-			else
471
+			} else
480 472
 			{
481 473
 				$e404 = FALSE;
482 474
 			}
@@ -492,8 +484,7 @@  discard block
 block discarded – undo
492 484
 				1 => $class,
493 485
 				2 => $method
494 486
 			);
495
-		}
496
-		else
487
+		} else
497 488
 		{
498 489
 			show_404($RTR->directory.$class.'/'.$method);
499 490
 		}
Please login to merge, or discard this patch.