src/DependencyInjection/Resolver/BaseParametersResolver.php 1 location
|
@@ 97-105 (lines=9) @@
|
| 94 |
|
return $value; |
| 95 |
|
} |
| 96 |
|
|
| 97 |
|
private function resolveArray(array $arrayValue, array $resolving) |
| 98 |
|
{ |
| 99 |
|
$resolvedValue = []; |
| 100 |
|
foreach ($arrayValue as $key => $value) { |
| 101 |
|
$resolvedValue[$key] = $this->resolveValue($value, $resolving); |
| 102 |
|
} |
| 103 |
|
|
| 104 |
|
return $resolvedValue; |
| 105 |
|
} |
| 106 |
|
|
| 107 |
|
/** |
| 108 |
|
* @param $value |
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 |