public function Serializer::denormalize in JSON:API 8
Same name and namespace in other branches
- 8.2 src/Serializer/Serializer.php \Drupal\jsonapi\Serializer\Serializer::denormalize()
File
- src/
Serializer/ Serializer.php, line 57
Class
- Serializer
- Overrides the Symfony serializer to cordon off our incompatible normalizers.
Namespace
Drupal\jsonapi\SerializerCode
public function denormalize($data, $type, $format = NULL, array $context = []) {
if ($this
->selfSupportsDenormalization($data, $type, $format)) {
return parent::denormalize($data, $type, $format, $context);
}
return $this->fallbackNormalizer
->denormalize($data, $type, $format, $context);
}