fixed typos

This commit is contained in:
2023-04-29 08:38:56 +02:00
parent e7b61ea313
commit cf753aaa20

View File

@@ -14,16 +14,16 @@ final class Configuration implements ConfigurationInterface
{ {
$treeBuilder = new TreeBuilder('magdev_redmine'); $treeBuilder = new TreeBuilder('magdev_redmine');
$rootNode = $treeBuilder->getRootNode(); $rootNode = $treeBuilder->getRootNode();
$rootNode->fixXmlConfig('connection') $rootNode->fixXmlConfig('connections')
->children() ->children()
->arrayNode('connections') ->arrayNode('connections')
->useAttributeAsKey('name') ->useAttributeAsKey('name')
->normalizeKeys(false) ->normalizeKeys(false)
->arrayPrototype() ->arrayPrototype()
->children() ->children()
->scalarNode('baseurl') ->scalarNode('url')
->isRequired() ->isRequired()
->info('The base URL of your redmine instance') ->info('The URL of your Redmine instance')
->end() ->end()
->scalarNode('apikey') ->scalarNode('apikey')
->isRequired() ->isRequired()