softfineware/discriminator-default-normalizer

Symfony serializer normalizer for normalizing to parent object in case of not found DiscriminatorMap

Installs: 3 723

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 7

pkg:composer/softfineware/discriminator-default-normalizer

1.1.0 2023-02-01 16:28 UTC

This package is auto-updated.

Last update: 2025-09-29 03:00:07 UTC


README

Test commit

How to use it

use SoftFineWare\SerializerDiscriminatorDefault\Attributes\DiscriminatorDefault;
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;

#[DiscriminatorDefault(class: DefaultRequest::class)]
#[DiscriminatorMap(typeProperty: 'type', mapping: [
    'a' => ARequest::class,
])]
abstract class BaseRequest
{
    public function __construct(
        public readonly string $id,
        public readonly string $type
    )
    {
    }
}
class DefaultRequest extends BaseRequest {}

In case of no match json will de denormalized to default class specifing by DiscriminatorDefault attribute

DiscriminatorDefault should not point to a class with DiscriminatorMap new child class must be create as DefaultRequest above

Installation

This normalizer must have priority -999 before:

\Symfony\Component\Serializer\Normalizer\ObjectNormalizer::class