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

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