File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1818use Symfony \Component \Config \Definition \Processor ;
1919use Symfony \Component \Lock \Store \SemaphoreStore ;
2020use Symfony \Component \Messenger \MessageBusInterface ;
21+ use Symfony \Component \Validator \Validation ;
2122
2223class ConfigurationTest extends TestCase
2324{
@@ -251,15 +252,15 @@ class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphor
251252 ),
252253 ),
253254 'messenger ' => array (
254- 'enabled ' => !class_exists (FullStack::class) && class_exists (MessageBusInterface::class) ,
255+ 'enabled ' => !class_exists (FullStack::class),
255256 'routing ' => array (),
256257 'middlewares ' => array (
257258 'doctrine_transaction ' => array (
258259 'enabled ' => false ,
259260 'entity_manager_name ' => null ,
260261 ),
261262 'validation ' => array (
262- 'enabled ' => false ,
263+ 'enabled ' => ! class_exists (FullStack::class) ,
263264 ),
264265 ),
265266 ),
You can’t perform that action at this time.
0 commit comments