class TypedDataNormalizer
Same name and namespace in other branches
- 10 core/modules/serialization/src/Normalizer/TypedDataNormalizer.php \Drupal\serialization\Normalizer\TypedDataNormalizer
- 9 core/modules/serialization/src/Normalizer/TypedDataNormalizer.php \Drupal\serialization\Normalizer\TypedDataNormalizer
- 8.9.x core/modules/serialization/src/Normalizer/TypedDataNormalizer.php \Drupal\serialization\Normalizer\TypedDataNormalizer
Normalizes typed data objects into strings or arrays.
Hierarchy
- class \Drupal\serialization\Normalizer\NormalizerBase implements \Symfony\Component\Serializer\SerializerAwareInterface, \Drupal\serialization\Normalizer\CacheableNormalizerInterface uses \Symfony\Component\Serializer\SerializerAwareTrait
- class \Drupal\serialization\Normalizer\TypedDataNormalizer uses \Drupal\serialization\Normalizer\SchematicNormalizerTrait, \Drupal\serialization\Normalizer\JsonSchemaReflectionTrait extends \Drupal\serialization\Normalizer\NormalizerBase
Expanded class hierarchy of TypedDataNormalizer
1 file declares its use of TypedDataNormalizer
- TypedDataNormalizerTest.php in core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ TypedDataNormalizerTest.php
1 string reference to 'TypedDataNormalizer'
- serialization.services.yml in core/
modules/ serialization/ serialization.services.yml - core/modules/serialization/serialization.services.yml
1 service uses TypedDataNormalizer
- serializer.normalizer.typed_data in core/
modules/ serialization/ serialization.services.yml - Drupal\serialization\Normalizer\TypedDataNormalizer
File
-
core/
modules/ serialization/ src/ Normalizer/ TypedDataNormalizer.php, line 10
Namespace
Drupal\serialization\NormalizerView source
class TypedDataNormalizer extends NormalizerBase {
use SchematicNormalizerTrait;
use JsonSchemaReflectionTrait;
/**
* {@inheritdoc}
*/
public function doNormalize($object, $format = NULL, array $context = []) : array|string|int|float|bool|\ArrayObject|null {
$this->addCacheableDependency($context, $object);
$value = $object->getValue();
// Support for stringable value objects: avoid numerous custom normalizers.
if (is_object($value) && method_exists($value, '__toString')) {
$value = (string) $value;
}
return $value;
}
/**
* {@inheritdoc}
*/
protected function getNormalizationSchema(mixed $object, array $context = []) : array {
assert($object instanceof TypedDataInterface);
$value = $object->getValue();
$nullable = !$object->getDataDefinition()
->isRequired();
// Match the special-cased logic in ::normalize().
if (is_object($value) && method_exists($value, '__toString')) {
return $nullable ? [
'oneOf' => [
'string',
'null',
],
] : [
'type' => 'string',
];
}
return $this->getJsonSchemaForMethod($object, 'getValue', [
'$comment' => static::generateNoSchemaAvailableMessage($object),
], $nullable);
}
/**
* {@inheritdoc}
*/
public function getSupportedTypes(?string $format) : array {
return [
TypedDataInterface::class => TRUE,
];
}
}
Members
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.