Skip to content

Commit 0f2f10c

Browse files
authored
docs(serialization) add missing closing bracket of Attribute (#1800)
1 parent 07dd615 commit 0f2f10c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/serialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ use Symfony\Component\Serializer\Annotation\Groups;
208208
#[Put(normalizationContext: ['groups' => ['put']])]
209209
class Book
210210
{
211-
#[Groups(['get', 'put'])
211+
#[Groups(['get', 'put'])]
212212
public $name;
213213
214214
#[Groups('get')]

0 commit comments

Comments
 (0)