Skip to content

Commit d326d4e

Browse files
committed
Process Rector rule: WrapVariableVariableNameInCurlyBracesRector
Signed-off-by: Tim Goudriaan <tim@codedmonkey.com>
1 parent 925875b commit d326d4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DependencyInjection/DirigentConfiguration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ public function getConfigTreeBuilder(): TreeBuilder
4949
->info('Previously used (private) decryption keys')
5050
->beforeNormalization()
5151
->ifString()
52-
->then(fn (string $keys): array => u($$keys)->split(','))
52+
->then(fn (string $keys): array => u(${$keys})->split(','))
5353
->end()
5454
->prototype('scalar')->end()
5555
->end()
5656
->arrayNode('rotated_key_paths')
5757
->info('Paths to previously used (private) decryption keys')
5858
->beforeNormalization()
5959
->ifString()
60-
->then(fn (string $paths): array => u($$paths)->split(','))
60+
->then(fn (string $paths): array => u(${$paths})->split(','))
6161
->end()
6262
->prototype('scalar')->end()
6363
->end()

0 commit comments

Comments
 (0)