PostDeserialize.php 338 B

12345678910111213141516
  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. * @Annotation
  10. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  11. */
  12. final class PostDeserialize
  13. {
  14. }