Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit a334315

Browse files
Merge pull request #16 from EdouardCourty/fix/symfony-6-4-configuration
fix(config): update configuration to fix Symfony 6.4 format
2 parents c78e28d + dda86ba commit a334315

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public function getConfigTreeBuilder(): TreeBuilder
2828
->arrayNode('server')
2929
->addDefaultsIfNotSet()
3030
->children()
31-
->stringNode('name')->defaultValue(self::DEFAULT_NAME)->end()
32-
->stringNode('version')->defaultValue(self::DEFAULT_VERSION)->end()
31+
->scalarNode('name')->defaultValue(self::DEFAULT_NAME)->end()
32+
->scalarNode('version')->defaultValue(self::DEFAULT_VERSION)->end()
3333
->end()
3434
->end()
3535
->end();

0 commit comments

Comments
 (0)