debug
This commit is contained in:
parent
30f60525e4
commit
401b73f92c
|
@ -17,17 +17,13 @@ class Configuration implements ConfigurationInterface
|
||||||
{
|
{
|
||||||
$treeBuilder = new TreeBuilder();
|
$treeBuilder = new TreeBuilder();
|
||||||
$root = $treeBuilder->root('storage');
|
$root = $treeBuilder->root('storage');
|
||||||
$root->children()
|
$root->useAttributeAsKey('storage_name')
|
||||||
->arrayNode('storage_name')
|
|
||||||
->useAttributeAsKey('storage_name')
|
|
||||||
->children()
|
->children()
|
||||||
->scalarNode('type')->end()
|
->scalarNode('type')->end()
|
||||||
->scalarNode('bucket')->end()
|
->scalarNode('bucket')->end()
|
||||||
->scalarNode('region')->end()
|
->scalarNode('region')->end()
|
||||||
->scalarNode('endpoint')->end()
|
->scalarNode('endpoint')->end()
|
||||||
->end()
|
->end()
|
||||||
->end()
|
|
||||||
->end()
|
|
||||||
->end();
|
->end();
|
||||||
return ($treeBuilder);
|
return ($treeBuilder);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue