Skip to content

Commit

Permalink
Fix CI test deprecations in SF 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Sep 10, 2023
1 parent 417143b commit 9907ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/DependencyInjection/Fixtures/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
$container->loadFromExtension('framework', [
'secret' => 'F00',
'http_method_override' => false,
'annotations' => class_exists(Annotation::class) && Kernel::VERSION_ID <= 60400,
'annotations' => class_exists(Annotation::class) && Kernel::VERSION_ID < 60400,
'php_errors' => ['log' => true],
] + (Kernel::VERSION_ID >= 60200 ? ['handle_all_throwables' => true] : []));
$container->loadFromExtension('doctrine', [
Expand Down

0 comments on commit 9907ca1

Please sign in to comment.