This commit is contained in:
Cyprian Beauvois 2019-02-20 11:50:22 +01:00
parent 562b1c1f00
commit ebebadaf8f
1 changed files with 7 additions and 5 deletions

View File

@ -19,6 +19,7 @@ class Configuration implements ConfigurationInterface
$root = $treeBuilder->root('storage'); $root = $treeBuilder->root('storage');
$root->children() $root->children()
->arrayNode('storage_name') ->arrayNode('storage_name')
->prototype('array')
->children() ->children()
->scalarNode('type')->end() ->scalarNode('type')->end()
->scalarNode('bucket')->end() ->scalarNode('bucket')->end()
@ -26,6 +27,7 @@ class Configuration implements ConfigurationInterface
->scalarNode('endpoint')->end() ->scalarNode('endpoint')->end()
->end() ->end()
->end() ->end()
->end()
->end(); ->end();
return ($treeBuilder); return ($treeBuilder);
} }