Skip to content

Commit 9145047

Browse files
committed
Config switch
1 parent 213fe0f commit 9145047

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

tests/Functional/App/TestKernel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
7373
$loader->load(__DIR__.'/config/config.yml');
7474
}
7575

76+
if (Kernel::VERSION < 60200) {
77+
$loader->load(__DIR__.'/config/config_pre_62.yml');
78+
}
79+
7680
$loader->load(function (ContainerBuilder $container): void {
7781
$container->addCompilerPass($this);
7882
});

tests/Functional/App/config/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ framework:
99
http_method_override: false
1010

1111
security:
12-
#enable_authenticator_manager: true
1312
providers:
1413
in_memory:
1514
memory:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
security:
2+
enable_authenticator_manager: true

0 commit comments

Comments
 (0)