CustomNormalizer
class CustomNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface, CacheableSupportsMethodInterface
Traits
Properties
Methods
object|null |
extractObjectToPopulate(string $class, array $context, string $key = null) Extract the object_to_populate field from the context if it exists and is an instance of the provided $class. |
from ObjectToPopulateTrait |
|
setSerializer(SerializerInterface $serializer) Sets the serializer. |
from SerializerAwareTrait |
array|string|int|float|bool |
normalize(mixed $object, string $format = null, array $context = array()) Normalizes an object into a set of arrays/scalars. |
|
object |
denormalize(mixed $data, string $class, string $format = null, array $context = array()) Denormalizes data back into an object of the given class. |
|
bool |
supportsNormalization(mixed $data, string $format = null) Checks if the given class implements the NormalizableInterface. |
|
bool |
supportsDenormalization(mixed $data, string $type, string $format = null) Checks if the given class implements the DenormalizableInterface. |
|
bool |
hasCacheableSupportsMethod() |
|
Details
Extract the object_to_populate
field from the context if it exists and is an instance of the provided $class.
Parameters
string |
$class |
The class the object should be |
array |
$context |
The denormalization context |
string |
$key |
They in which to look for the object to populate. Keeps backwards compatibility with AbstractNormalizer . |
Return Value
object|null |
an object if things check out, null otherwise |
Sets the serializer.
Parameters
array|string|int|float|bool normalize(mixed $object, string $format = null, array $context = array())
Normalizes an object into a set of arrays/scalars.
Parameters
mixed |
$object |
Object to normalize |
string |
$format |
Format the normalization result will be encoded as |
array |
$context |
Context options for the normalizer |
Return Value
array|string|int|float|bool |
|
Exceptions
object denormalize(mixed $data, string $class, string $format = null, array $context = array())
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
Exceptions
bool supportsNormalization(mixed $data, string $format = null)
Checks if the given class implements the NormalizableInterface.
Parameters
mixed |
$data |
Data to normalize |
string |
$format |
The format being (de-)serialized from or into |
Return Value
bool supportsDenormalization(mixed $data, string $type, string $format = null)
Checks if the given class implements the DenormalizableInterface.
Parameters
mixed |
$data |
Data to denormalize from |
string |
$type |
The class to which the data should be denormalized |
string |
$format |
The format being deserialized from |
Return Value
bool hasCacheableSupportsMethod()
Return Value