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
	if (file_exists(APPPATH.'config/constants.php'))
71
	{

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

@@ 1369-1372 (lines=4) @@
1366
			include(APPPATH.'config/autoload.php');
1367
		}
1368
1369
		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php'))
1370
		{
1371
			include(APPPATH.'config/'.ENVIRONMENT.'/autoload.php');
1372
		}
1373
1374
		if ( ! isset($autoload))
1375
		{