Code Duplication    Length = 7-7 lines in 2 locations

core/EE_Config.core.php 2 locations

@@ 1404-1410 (lines=7) @@
1401
     * @param    string  $key    - url param key indicating a route is being called
1402
     * @return    string
1403
     */
1404
    public static function get_forward($route = null, $status = 0, $key = 'ee')
1405
    {
1406
        do_action('AHEE__EE_Config__get_forward__begin', $route, $status);
1407
        if (isset(EE_Config::$_module_forward_map[$key][$route][$status])) {
1408
            return apply_filters(
1409
                'FHEE__EE_Config__get_forward',
1410
                EE_Config::$_module_forward_map[$key][$route][$status],
1411
                $route,
1412
                $status
1413
            );
@@ 1470-1476 (lines=7) @@
1467
     * @param    string  $key    - url param key indicating a route is being called
1468
     * @return    string
1469
     */
1470
    public static function get_view($route = null, $status = 0, $key = 'ee')
1471
    {
1472
        do_action('AHEE__EE_Config__get_view__begin', $route, $status);
1473
        if (isset(EE_Config::$_module_view_map[$key][$route][$status])) {
1474
            return apply_filters(
1475
                'FHEE__EE_Config__get_view',
1476
                EE_Config::$_module_view_map[$key][$route][$status],
1477
                $route,
1478
                $status
1479
            );