diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 2aebbe1..f6c634f 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -23,8 +23,8 @@ public function getConfigTreeBuilder() ->scalarNode('project_id')->isRequired()->cannotBeEmpty()->end() ->scalarNode('file_format')->cannotBeEmpty()->defaultValue('xliff')->end() ->scalarNode('source_locale')->cannotBeEmpty()->defaultValue('en')->end() - ->arrayNode('locales')->requiresAtLeastOneElement()->cannotBeEmpty()->prototype('scalar')->end()->end() - ->arrayNode('file_paths')->requiresAtLeastOneElement()->cannotBeEmpty()->prototype('scalar')->end()->end() + ->arrayNode('locales')->requiresAtLeastOneElement()->prototype('scalar')->end()->end() + ->arrayNode('file_paths')->requiresAtLeastOneElement()->prototype('scalar')->end()->end() ->scalarNode('keep_all_strings')->cannotBeEmpty()->defaultValue(true)->end() ->end();