Skip to content

Commit c6bdbc0

Browse files
authored
Fix Symfony 6 deprecations in E2E test (#656)
1 parent 56f78c3 commit c6bdbc0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tests/End2End/App/Kernel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
4444
$loader->load(__DIR__ . '/deprecations_for_5.yml');
4545
}
4646

47+
if (self::VERSION_ID >= 60000) {
48+
$loader->load(__DIR__ . '/deprecations_for_6.yml');
49+
}
50+
4751
if (interface_exists(MessageBusInterface::class) && self::VERSION_ID >= 40300) {
4852
$loader->load(__DIR__ . '/messenger.yml');
4953
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
framework:
2+
http_method_override: false

0 commit comments

Comments
 (0)