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 213fe0f commit 9145047Copy full SHA for 9145047
tests/Functional/App/TestKernel.php
@@ -73,6 +73,10 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
73
$loader->load(__DIR__.'/config/config.yml');
74
}
75
76
+ if (Kernel::VERSION < 60200) {
77
+ $loader->load(__DIR__.'/config/config_pre_62.yml');
78
+ }
79
+
80
$loader->load(function (ContainerBuilder $container): void {
81
$container->addCompilerPass($this);
82
});
tests/Functional/App/config/config.yml
@@ -9,7 +9,6 @@ framework:
9
http_method_override: false
10
11
security:
12
- #enable_authenticator_manager: true
13
providers:
14
in_memory:
15
memory:
tests/Functional/App/config/config_pre_62.yml
@@ -0,0 +1,2 @@
1
+security:
2
+ enable_authenticator_manager: true
0 commit comments