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

@@ 1318-1321 (lines=4) @@
1315
			include(APPPATH.'config/autoload.php');
1316
		}
1317
1318
		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
1319
		{
1320
			include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
1321
		}
1322
1323
		if ( ! isset($autoload))
1324
		{