From b5dbf93fc0d8f3c4ea46229cd1a98af0aef228a2 Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Tue, 9 Jun 2026 12:11:04 +0200 Subject: [PATCH] Update supported types of custom denormalizer in serialization.md --- core/serialization.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/serialization.md b/core/serialization.md index 82f21619a1f..8850fc84d7a 100644 --- a/core/serialization.md +++ b/core/serialization.md @@ -719,9 +719,7 @@ class PlainIdentifierDenormalizer implements DenormalizerInterface, Denormalizer public function getSupportedTypes(?string $format): array { return [ - 'object' => null, - '*' => false, - Dummy::class => true + Dummy::class => false, ]; } }