From 40d8bea4ed5174342a075c3c519c3dca7504da11 Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Wed, 25 Oct 2023 16:05:35 +0200 Subject: [PATCH] Add annotation -> attribute aliases --- Tests/Fixtures/Dummy.php | 2 +- Tests/Fixtures/IgnorePropertyDummy.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/Fixtures/Dummy.php b/Tests/Fixtures/Dummy.php index fabf1a0..ec3bb8d 100644 --- a/Tests/Fixtures/Dummy.php +++ b/Tests/Fixtures/Dummy.php @@ -11,7 +11,7 @@ namespace Symfony\Component\PropertyInfo\Tests\Fixtures; -use Symfony\Component\Serializer\Annotation\Groups; +use Symfony\Component\Serializer\Attribute\Groups; /** * @author Kévin Dunglas diff --git a/Tests/Fixtures/IgnorePropertyDummy.php b/Tests/Fixtures/IgnorePropertyDummy.php index 39d2963..9216ff8 100644 --- a/Tests/Fixtures/IgnorePropertyDummy.php +++ b/Tests/Fixtures/IgnorePropertyDummy.php @@ -11,8 +11,8 @@ namespace Symfony\Component\PropertyInfo\Tests\Fixtures; -use Symfony\Component\Serializer\Annotation\Groups; -use Symfony\Component\Serializer\Annotation\Ignore; +use Symfony\Component\Serializer\Attribute\Groups; +use Symfony\Component\Serializer\Attribute\Ignore; /** * @author Vadim Borodavko