Code Duplication    Length = 4-4 lines in 2 locations

application/tests/_ci_phpunit_test/replacing/core/CodeIgniter.php 1 location

@@ 65-68 (lines=4) @@
62
 *  Load the framework constants
63
 * ------------------------------------------------------
64
 */
65
	if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/constants.php'))
66
	{
67
		require_once(APPPATH.'config/'.ENVIRONMENT.'/constants.php');
68
	}
69
70
	require_once(APPPATH.'config/constants.php');
71

application/tests/_ci_phpunit_test/replacing/core/Loader.php 1 location

@@ 1303-1306 (lines=4) @@
1300
			include(APPPATH.'config/autoload.php');
1301
		}
1302
1303
		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
1304
		{
1305
			include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
1306
		}
1307
1308
		if ( ! isset($autoload))
1309
		{