You are here

public function TestDenormalizer::denormalize in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/serializer/Tests/Normalizer/TestDenormalizer.php \Symfony\Component\Serializer\Tests\Normalizer\TestDenormalizer::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

Overrides DenormalizerInterface::denormalize

File

vendor/symfony/serializer/Tests/Normalizer/TestDenormalizer.php, line 26

Class

TestDenormalizer
Provides a test Normalizer which only implements the DenormalizerInterface.

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

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