From 6928ddec29080d189b676e36d9ba2ed4a374098b Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Sun, 17 Jan 2021 12:17:26 +0100 Subject: [PATCH] fix merge --- .../Tests/Compiler/CheckTypeDeclarationsPassTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/CheckTypeDeclarationsPassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/CheckTypeDeclarationsPassTest.php index c2de65d51b..4314d34958 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/CheckTypeDeclarationsPassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/CheckTypeDeclarationsPassTest.php @@ -726,7 +726,7 @@ class CheckTypeDeclarationsPassTest extends TestCase $container = new ContainerBuilder(); $container ->register('foobar', Deprecated::class) - ->setDeprecated(true) + ->setDeprecated('foo/bar', '1.2.3', '') ; (new CheckTypeDeclarationsPass(true))->process($container);