This commit is contained in:
Cyprian Beauvois 2019-02-20 11:56:34 +01:00
parent 8a0f853a41
commit b3ba36ea5b
1 changed files with 6 additions and 5 deletions

View File

@ -19,11 +19,12 @@ class Configuration implements ConfigurationInterface
$root = $treeBuilder->root('storage');
$root->useAttributeAsKey('storage_name')
->prototype('array')
->children()
->scalarNode('type')->end()
->scalarNode('bucket')->end()
->scalarNode('region')->end()
->scalarNode('endpoint')->end()
->children()
->scalarNode('type')->end()
->scalarNode('bucket')->end()
->scalarNode('region')->end()
->scalarNode('endpoint')->end()
->end()
->end()
->end();
return ($treeBuilder);