class CustomNormalizer extends SerializerAwareNormalizer implements NormalizerInterface, DenormalizerInterface

Methods

setSerializer(SerializerInterface $serializer)

Sets the owning Serializer object.

array|string|bool|int|float|null
normalize(object $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 NormalizableInterface.

Details

in SerializerAwareNormalizer at line line 32
setSerializer(SerializerInterface $serializer)

Sets the owning Serializer object.

Parameters

SerializerInterface $serializer

at line line 22
array|string|bool|int|float|null normalize(object $object, string $format = null, array $context = array())

Normalizes an object into a set of arrays/scalars.

Parameters

object $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|bool|int|float|null

at line line 30
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

object

at line line 46
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

at line line 60
bool supportsDenormalization(mixed $data, string $type, string $format = null)

Checks if the given class implements the NormalizableInterface.

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