NormalizationAwareInterface.php 616 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Serializer\Encoder;
  11. /**
  12. * Defines the interface of encoders that will normalize data themselves.
  13. *
  14. * Implementing this interface essentially just tells the Serializer that the
  15. * data should not be pre-normalized before being passed to this Encoder.
  16. *
  17. * @author Jordi Boggiano <j.boggiano@seld.be>
  18. */
  19. interface NormalizationAwareInterface
  20. {
  21. }