ArrayDenormalizer
class ArrayDenormalizer implements DenormalizerInterface, SerializerAwareInterface
Denormalizes arrays of objects.
Methods
object
denormalize(mixed $data, string $class, string $format = null, array $context = array())
Denormalizes data back into an object of the given class.
bool
supportsDenormalization(mixed $data, string $type, string $format = null)
Checks whether the given class is supported for denormalization by this normalizer.
Details
at line line 34
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 60
bool
supportsDenormalization(mixed $data, string $type, string $format = null)
Checks whether the given class is supported for denormalization by this normalizer.
at line line 69
setSerializer(SerializerInterface $serializer)
Sets the owning Serializer object.