We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74336c commit 17f887eCopy full SHA for 17f887e
src/NodeFactory/Service/ServiceOptionNodeFactory.php
@@ -69,8 +69,12 @@ private function unNestArguments(array $servicesValues): array
69
];
70
}
71
72
- private function shouldSkip(string $key): bool
+ private function shouldSkip(string|int $key): bool
73
{
74
+ if (\is_int($key)) {
75
+ return false;
76
+ }
77
+
78
// options started by decoration_<option> are used as options of the method decorate().
79
if (\str_starts_with($key, 'decoration_')) {
80
return true;
0 commit comments