123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace Symfony\Component\Serializer\Normalizer;
- use Symfony\Component\Serializer\SerializerInterface;
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * Defines the interface of normalizers.
- *
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- interface NormalizerInterface
- {
- /**
- * Normalizes an object into a set of arrays/scalars
- *
- * @param object $object object to normalize
- * @param string $format format the normalization result will be encoded as
- * @param array $properties a list of properties to extract, if null all properties are returned
- * @return array|scalar
- * @api
- */
- function normalize($object, $format, $properties = null);
- /**
- * Denormalizes data back into an object of the given class
- *
- * @param mixed $data data to restore
- * @param string $class the expected class to instantiate
- * @param string $format format the given data was extracted from
- * @return object
- * @api
- */
- function denormalize($data, $class, $format = null);
- /**
- * Checks whether the given class is supported for normalization by this normalizer
- *
- * @param mixed $data Data to normalize.
- * @param string $format The format being (de-)serialized from or into.
- * @return Boolean
- * @api
- */
- function supportsNormalization($data, $format = null);
- /**
- * Checks whether the given class is supported for denormalization by this normalizer
- *
- * @param mixed $data Data to denormalize from.
- * @param string $type The class to which the data should be denormalized.
- * @param string $format The format being deserialized from.
- * @return Boolean
- * @api
- */
- function supportsDenormalization($data, $type, $format = null);
- /**
- * Sets the owning Serializer object
- *
- * @param SerializerInterface $serializer
- * @api
- */
- function setSerializer(SerializerInterface $serializer);
- /**
- * Gets the owning Serializer object
- *
- * @return SerializerInterface
- * @api
- */
- function getSerializer();
- }
|