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 56f78c3 commit c6bdbc0Copy full SHA for c6bdbc0
tests/End2End/App/Kernel.php
@@ -44,6 +44,10 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
44
$loader->load(__DIR__ . '/deprecations_for_5.yml');
45
}
46
47
+ if (self::VERSION_ID >= 60000) {
48
+ $loader->load(__DIR__ . '/deprecations_for_6.yml');
49
+ }
50
+
51
if (interface_exists(MessageBusInterface::class) && self::VERSION_ID >= 40300) {
52
$loader->load(__DIR__ . '/messenger.yml');
53
tests/End2End/App/deprecations_for_6.yml
@@ -0,0 +1,2 @@
1
+framework:
2
+ http_method_override: false
0 commit comments