Code Duplication    Length = 9-9 lines in 2 locations

src/DependencyInjection/Resolver/BuiltParameterResolver.php 1 location

@@ 79-87 (lines=9) @@
76
        return $value;
77
    }
78
79
    private function resolveArray(array $arrayValue, array $resolving)
80
    {
81
        $resolvedValue = [];
82
        foreach ($arrayValue as $key => $value) {
83
            $resolvedValue[$key] = $this->resolveValue($value, $resolving);
84
        }
85
86
        return $resolvedValue;
87
    }
88
89
    /**
90
     * @param $value

src/DependencyInjection/Resolver/BaseParametersResolver.php 1 location

@@ 109-117 (lines=9) @@
106
        return $value;
107
    }
108
109
    private function resolveArray(array $arrayValue, array $resolving)
110
    {
111
        $resolvedValue = [];
112
        foreach ($arrayValue as $key => $value) {
113
            $resolvedValue[$key] = $this->resolveValue($value, $resolving);
114
        }
115
116
        return $resolvedValue;
117
    }
118
119
    /**
120
     * @param $value