From f28b1f78de3a2938ff05cfe751233097624cc756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Sun, 6 Aug 2023 11:31:40 +0200 Subject: [PATCH] CI: Fix deprecation failures with 6.4 --- Tests/DependencyInjection/Fixtures/TestKernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/DependencyInjection/Fixtures/TestKernel.php b/Tests/DependencyInjection/Fixtures/TestKernel.php index 4184257f7..3e48c4980 100644 --- a/Tests/DependencyInjection/Fixtures/TestKernel.php +++ b/Tests/DependencyInjection/Fixtures/TestKernel.php @@ -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, ], ]);