We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 925875b commit d326d4eCopy full SHA for d326d4e
src/DependencyInjection/DirigentConfiguration.php
@@ -49,15 +49,15 @@ public function getConfigTreeBuilder(): TreeBuilder
49
->info('Previously used (private) decryption keys')
50
->beforeNormalization()
51
->ifString()
52
- ->then(fn (string $keys): array => u($$keys)->split(','))
+ ->then(fn (string $keys): array => u(${$keys})->split(','))
53
->end()
54
->prototype('scalar')->end()
55
56
->arrayNode('rotated_key_paths')
57
->info('Paths to previously used (private) decryption keys')
58
59
60
- ->then(fn (string $paths): array => u($$paths)->split(','))
+ ->then(fn (string $paths): array => u(${$paths})->split(','))
61
62
63
0 commit comments