PropertyNormalizer
class PropertyNormalizer extends AbstractNormalizer
Converts between objects and arrays by mapping properties.
The normalization process looks for all the object's properties (public and private). The result is a map from property names to property values. Property values are normalized through the serializer.
The denormalization first looks at the constructor of the given class to see if any of the parameters have the same name as one of the properties. The constructor is then called with all parameters or an exception is thrown if any required parameters were not present as properties. Then the denormalizer walks through the given map of property names to property values to see if a property with the corresponding name exists. If found, the property gets the value.
Methods
Sets the {@link ClassMetadataFactoryInterface} to use.
Set circular reference limit.
Set circular reference handler.
Set normalization callbacks.
Set ignored attributes for normalization and denormalization.
Set attributes to be camelized on denormalize.
Normalizes an object into a set of arrays/scalars.
Denormalizes data back into an object of the given class.
Checks whether the given class is supported for normalization by this normalizer.
Checks whether the given class is supported for denormalization by this normalizer.
Details
in SerializerAwareNormalizer at line line 32
setSerializer(SerializerInterface $serializer)
Sets the owning Serializer object.
in AbstractNormalizer at line line 65
__construct(ClassMetadataFactoryInterface $classMetadataFactory = null, NameConverterInterface $nameConverter = null)
Sets the {@link ClassMetadataFactoryInterface} to use.
in AbstractNormalizer at line line 78
AbstractNormalizer
setCircularReferenceLimit(int $circularReferenceLimit)
Set circular reference limit.
in AbstractNormalizer at line line 94
AbstractNormalizer
setCircularReferenceHandler(callable $circularReferenceHandler)
Set circular reference handler.
in AbstractNormalizer at line line 114
AbstractNormalizer
setCallbacks(array $callbacks)
Set normalization callbacks.
in AbstractNormalizer at line line 136
AbstractNormalizer
setIgnoredAttributes(array $ignoredAttributes)
Set ignored attributes for normalization and denormalization.
in AbstractNormalizer at line line 154
AbstractNormalizer
setCamelizedAttributes(array $camelizedAttributes)
deprecated
deprecated
Set attributes to be camelized on denormalize.
at line line 42
array|string|bool|int|float|null
normalize(object $object, string $format = null, array $context = array())
Normalizes an object into a set of arrays/scalars.
at line line 95
object
denormalize(mixed $data, string $class, string $format = null, array $context = array())
Denormalizes data back into an object of the given class.
at line line 132
bool
supportsNormalization(mixed $data, string $format = null)
Checks whether the given class is supported for normalization by this normalizer.
at line line 140
bool
supportsDenormalization(mixed $data, string $type, string $format = null)
Checks whether the given class is supported for denormalization by this normalizer.