class AbstractNormalizerDummy extends AbstractNormalizer
{
public function getSupportedTypes(?string $format): array
{
return ['*' => false];
}
public function getAllowedAttributes(string|object $classOrObject, array $context, bool $attributesAsString = false): array|bool
{
return parent::getAllowedAttributes($classOrObject, $context, $attributesAsString);
}
public function normalize(mixed $object, string $format = null, array $context = []): array|string|int|float|bool|\ArrayObject|null
{
}
public function supportsNormalization(mixed $data, string $format = null, array $context = []): bool
{
return true;
}