We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b88eb commit 9efb3b8Copy full SHA for 9efb3b8
src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php
@@ -18,6 +18,7 @@
18
use Symfony\Component\Config\Definition\Processor;
19
use Symfony\Component\Lock\Store\SemaphoreStore;
20
use Symfony\Component\Messenger\MessageBusInterface;
21
+use Symfony\Component\Validator\Validator\ValidatorInterface;
22
23
class ConfigurationTest extends TestCase
24
{
@@ -259,7 +260,7 @@ class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphor
259
260
'entity_manager_name' => null,
261
),
262
'validation' => array(
- 'enabled' => false,
263
+ 'enabled' => !class_exists(FullStack::class) && class_exists(ValidatorInterface::class),
264
265
266
0 commit comments