Code Duplication    Length = 7-7 lines in 2 locations

core/EE_Config.core.php 2 locations

@@ 1459-1465 (lines=7) @@
1456
	 * @param    string  $key    - url param key indicating a route is being called
1457
	 * @return    string
1458
	 */
1459
	public static function get_forward( $route = null, $status = 0, $key = 'ee' ) {
1460
		do_action( 'AHEE__EE_Config__get_forward__begin', $route, $status );
1461
		if ( isset( EE_Config::$_module_forward_map[ $key ][ $route ][ $status ] ) ) {
1462
			return apply_filters(
1463
				'FHEE__EE_Config__get_forward',
1464
				EE_Config::$_module_forward_map[ $key ][ $route ][ $status ],
1465
				$route,
1466
				$status
1467
			);
1468
		}
@@ 1523-1529 (lines=7) @@
1520
	 * @param    string  $key    - url param key indicating a route is being called
1521
	 * @return    string
1522
	 */
1523
	public static function get_view( $route = null, $status = 0, $key = 'ee' ) {
1524
		do_action( 'AHEE__EE_Config__get_view__begin', $route, $status );
1525
		if ( isset( EE_Config::$_module_view_map[ $key ][ $route ][ $status ] ) ) {
1526
			return apply_filters(
1527
				'FHEE__EE_Config__get_view',
1528
				EE_Config::$_module_view_map[ $key ][ $route ][ $status ],
1529
				$route,
1530
				$status
1531
			);
1532
		}