Skip to content

Commit

Permalink
CI: Fix deprecation failures with 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Aug 6, 2023
1 parent 8d85792 commit f28b1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/DependencyInjection/Fixtures/TestKernel.php
Expand Up @@ -43,7 +43,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
'secret' => 'F00',
'http_method_override' => false,
'annotations' => [
'enabled' => class_exists(Annotation::class),
'enabled' => class_exists(Annotation::class) && Kernel::VERSION_ID <= 64000,
],
]);

Expand Down

0 comments on commit f28b1f7

Please sign in to comment.