File tree 1 file changed +3
-3
lines changed
src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
use Symfony \Component \Config \Definition \Exception \InvalidConfigurationException ;
18
18
use Symfony \Component \Config \Definition \Processor ;
19
19
use Symfony \Component \Lock \Store \SemaphoreStore ;
20
- use Symfony \Component \Messenger \ MessageBusInterface ;
20
+ use Symfony \Component \Validator \ Validation ;
21
21
22
22
class ConfigurationTest extends TestCase
23
23
{
@@ -251,15 +251,15 @@ class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphor
251
251
),
252
252
),
253
253
'messenger ' => array (
254
- 'enabled ' => !class_exists (FullStack::class) && class_exists (MessageBusInterface::class) ,
254
+ 'enabled ' => !class_exists (FullStack::class),
255
255
'routing ' => array (),
256
256
'middlewares ' => array (
257
257
'doctrine_transaction ' => array (
258
258
'enabled ' => false ,
259
259
'entity_manager_name ' => null ,
260
260
),
261
261
'validation ' => array (
262
- 'enabled ' => false ,
262
+ 'enabled ' => ! class_exists (FullStack::class) ,
263
263
),
264
264
),
265
265
),
You can’t perform that action at this time.
0 commit comments