Code Duplication    Length = 5-5 lines in 2 locations

web_interface/astpp/system/core/Loader.php 2 locations

@@ 1034-1038 (lines=5) @@
1031
						include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php');
1032
						break;
1033
					}
1034
					elseif (file_exists($path.'config/'.strtolower($class).'.php'))
1035
					{
1036
						include($path.'config/'.strtolower($class).'.php');
1037
						break;
1038
					}
1039
					elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1040
					{
1041
						include($path.'config/'.ucfirst(strtolower($class)).'.php');
@@ 1039-1043 (lines=5) @@
1036
						include($path.'config/'.strtolower($class).'.php');
1037
						break;
1038
					}
1039
					elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php'))
1040
					{
1041
						include($path.'config/'.ucfirst(strtolower($class)).'.php');
1042
						break;
1043
					}
1044
				}
1045
			}
1046
		}