From 46819f1cd0c225a1ee43cab453ff09d21ec66a3a Mon Sep 17 00:00:00 2001 From: cbeauvoi Date: Wed, 20 Feb 2019 11:59:30 +0100 Subject: [PATCH] debug --- StorageBundle/DependencyInjection/Configuration.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/StorageBundle/DependencyInjection/Configuration.php b/StorageBundle/DependencyInjection/Configuration.php index 0f1559e..22db9e0 100644 --- a/StorageBundle/DependencyInjection/Configuration.php +++ b/StorageBundle/DependencyInjection/Configuration.php @@ -20,10 +20,18 @@ class Configuration implements ConfigurationInterface $root->useAttributeAsKey('storage_name') ->prototype('array') ->children() - ->scalarNode('type')->end() + ->scalarNode('type')->end() ->scalarNode('bucket')->end() ->scalarNode('region')->end() ->scalarNode('endpoint')->end() + ->arrayNode('credentials') + ->children() + ->scalarNode('key')->end() + ->scalarNode('secret')->end() + ->end() + ->end() + ->scalarNode('version')->end() + ->scalarNode('path')->end() ->end() ->end() ->end();