From 2c88dc8c3162ad4e96bf6d309f19ed27eb13689e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4dlich?= Date: Sat, 25 Nov 2023 10:45:09 +0100 Subject: [PATCH] Improve `debug:serializer` command documentation by adding `serializedPath` --- serializer.rst | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/serializer.rst b/serializer.rst index ef155a1a45d..9731e9b869e 100644 --- a/serializer.rst +++ b/serializer.rst @@ -511,20 +511,22 @@ given class: | | "groups" => [ | | | "book:read", | | | "book:write", | - | | ] | + | | ], | | | "maxDepth" => 1, | - | | "serializedName" => "book_name" | - | | "ignore" => false | + | | "serializedName" => "book_name", | + | | "serializedPath" => null, | + | | "ignore" => false, | | | "normalizationContexts" => [], | | | "denormalizationContexts" => [] | | | ] | | isbn | [ | | | "groups" => [ | | | "book:read", | - | | ] | + | | ], | | | "maxDepth" => null, | - | | "serializedName" => null | - | | "ignore" => false | + | | "serializedName" => null, | + | | "serializedPath" => [data][isbn], | + | | "ignore" => false, | | | "normalizationContexts" => [], | | | "denormalizationContexts" => [] | | | ] |