You are here

public function SerializerInterface::deserialize in Zircon Profile 8

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

Deserializes data into the given type.

Parameters

mixed $data:

string $type:

string $format:

array $context:

Return value

object

1 method overrides SerializerInterface::deserialize()
Serializer::deserialize in vendor/symfony/serializer/Serializer.php
Deserializes data into the given type.

File

vendor/symfony/serializer/SerializerInterface.php, line 42

Class

SerializerInterface
Defines the interface of the Serializer.

Namespace

Symfony\Component\Serializer

Code

public function deserialize($data, $type, $format, array $context = array());