PostDeserialize.php 317 B

123456789101112131415
  1. <?php
  2. namespace JMS\SerializerBundle\Annotation;
  3. /**
  4. * This annotation can be defined on methods which are called after the
  5. * deserialization of the object is complete.
  6. *
  7. * These methods do not necessarily have to be public.
  8. *
  9. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  10. */
  11. class PostDeserialize
  12. {
  13. }