You are here

public function DenormalizerInterface::denormalize in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/serializer/Normalizer/DenormalizerInterface.php \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()

Denormalizes data back into an object of the given class.

Parameters

mixed $data data to restore:

string $class the expected class to instantiate:

string $format format the given data was extracted from:

array $context options available to the denormalizer:

Return value

object

10 methods override DenormalizerInterface::denormalize()
ContentEntityNormalizer::denormalize in core/modules/hal/src/Normalizer/ContentEntityNormalizer.php
Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize().
CustomNormalizer::denormalize in vendor/symfony/serializer/Normalizer/CustomNormalizer.php
Denormalizes data back into an object of the given class.
EntityNormalizer::denormalize in core/modules/serialization/src/Normalizer/EntityNormalizer.php
Denormalizes data back into an object of the given class.
FieldItemNormalizer::denormalize in core/modules/hal/src/Normalizer/FieldItemNormalizer.php
Denormalizes data back into an object of the given class.
FieldNormalizer::denormalize in core/modules/hal/src/Normalizer/FieldNormalizer.php
Denormalizes data back into an object of the given class.

... See full list

File

vendor/symfony/serializer/Normalizer/DenormalizerInterface.php, line 31

Class

DenormalizerInterface
Defines the interface of denormalizers.

Namespace

Symfony\Component\Serializer\Normalizer

Code

public function denormalize($data, $class, $format = null, array $context = array());