From 2f0b9b79a95c8b8b0ff666cf641e8edb43e2ef95 Mon Sep 17 00:00:00 2001 From: Jonny Eom Date: Fri, 8 Sep 2023 11:17:09 -0400 Subject: [PATCH] docs(serialization) add missing closing bracket of Attribute --- core/serialization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/serialization.md b/core/serialization.md index 2ee8948197e..a5c4658d02b 100644 --- a/core/serialization.md +++ b/core/serialization.md @@ -208,7 +208,7 @@ use Symfony\Component\Serializer\Annotation\Groups; #[Put(normalizationContext: ['groups' => ['put']])] class Book { - #[Groups(['get', 'put']) + #[Groups(['get', 'put'])] public $name; #[Groups('get')]