Code Duplication    Length = 7-7 lines in 2 locations

core/EE_Config.core.php 2 locations

@@ 1484-1490 (lines=7) @@
1481
	 * @param    string  $key    - url param key indicating a route is being called
1482
	 * @return    string
1483
	 */
1484
	public static function get_forward( $route = null, $status = 0, $key = 'ee' ) {
1485
		do_action( 'AHEE__EE_Config__get_forward__begin', $route, $status );
1486
		if ( isset( EE_Config::$_module_forward_map[ $key ][ $route ][ $status ] ) ) {
1487
			return apply_filters(
1488
				'FHEE__EE_Config__get_forward',
1489
				EE_Config::$_module_forward_map[ $key ][ $route ][ $status ],
1490
				$route,
1491
				$status
1492
			);
1493
		}
@@ 1548-1554 (lines=7) @@
1545
	 * @param    string  $key    - url param key indicating a route is being called
1546
	 * @return    string
1547
	 */
1548
	public static function get_view( $route = null, $status = 0, $key = 'ee' ) {
1549
		do_action( 'AHEE__EE_Config__get_view__begin', $route, $status );
1550
		if ( isset( EE_Config::$_module_view_map[ $key ][ $route ][ $status ] ) ) {
1551
			return apply_filters(
1552
				'FHEE__EE_Config__get_view',
1553
				EE_Config::$_module_view_map[ $key ][ $route ][ $status ],
1554
				$route,
1555
				$status
1556
			);
1557
		}