From ad4aaf151aca3e7de8042c691d7538ab1787ecdb Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Wed, 3 Oct 2018 17:35:32 +0200 Subject: [PATCH] clarify the cache.pools.provider option --- .../FrameworkBundle/DependencyInjection/Configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php index 06429cdd1a07c..6775c7782674b 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php @@ -879,7 +879,7 @@ private function addCacheSection(ArrayNodeDefinition $rootNode) ->booleanNode('public')->defaultFalse()->end() ->integerNode('default_lifetime')->end() ->scalarNode('provider') - ->info('The service name to use as provider when the specified adapter needs one.') + ->info('Overwrite the setting from the default provider for this adapter.') ->end() ->scalarNode('clearer')->end() ->end()